回答編集履歴
1
実装例を追加。
answer
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
-
|
1
|
+
`AccountViewController`に以下を追加してみるとよいと思います。
|
2
2
|
|
3
|
+
```swift
|
4
|
+
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
|
5
|
+
segue.destination.modalPresentationStyle = .fullScreen
|
6
|
+
}
|
7
|
+
```
|
8
|
+
|
9
|
+
詳細はこちらをご参照ください。
|
10
|
+
|
3
11
|
[https://teratail.com/questions/224705#reply-328891](https://teratail.com/questions/224705#reply-328891)
|