質問編集履歴
1
コードの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -66,4 +66,21 @@
|
|
66
66
|
extension TestPageViewController: UIPageViewControllerDelegate {
|
67
67
|
|
68
68
|
}
|
69
|
+
```
|
70
|
+
### 追記 このViewControllerから上記のPageViewControllerへ遷移してます
|
71
|
+
```
|
72
|
+
class FirstViewController: UIViewController {
|
73
|
+
|
74
|
+
override func viewDidLoad() {
|
75
|
+
super.viewDidLoad()
|
76
|
+
|
77
|
+
// Do any additional setup after loading the view.
|
78
|
+
}
|
79
|
+
|
80
|
+
@IBAction func tap(_ sender: Any) {
|
81
|
+
let testVC = TestPageViewController.instantiate()
|
82
|
+
navigationController?.pushViewController(testVC, animated: true)
|
83
|
+
}
|
84
|
+
|
85
|
+
}
|
69
86
|
```
|