質問編集履歴
3
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -86,7 +86,7 @@
|
|
86
86
|
|
87
87
|
}
|
88
88
|
|
89
|
-
present(
|
89
|
+
present(menuView, animated: true,completion: nil)
|
90
90
|
|
91
91
|
}
|
92
92
|
|
2
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -72,7 +72,7 @@
|
|
72
72
|
|
73
73
|
@objc func buttonTapped(_ sender: UIButton) {
|
74
74
|
|
75
|
-
let menuView =
|
75
|
+
let menuView = MenuViewController()
|
76
76
|
|
77
77
|
menuView.modalPresentationStyle = .popover
|
78
78
|
|
@@ -86,7 +86,7 @@
|
|
86
86
|
|
87
87
|
}
|
88
88
|
|
89
|
-
present(
|
89
|
+
present(MenuView, animated: true,completion: nil)
|
90
90
|
|
91
91
|
}
|
92
92
|
|
1
文法の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -98,7 +98,7 @@
|
|
98
98
|
|
99
99
|
```
|
100
100
|
|
101
|
-
class
|
101
|
+
class MenuViewController: UITableViewController , UINavigationControllerDelegate , UIImagePickerControllerDelegate {
|
102
102
|
|
103
103
|
let menuTex: [String] = ["ファイル","写真","カメラ","テキスト"]
|
104
104
|
|