ImagePickerControllerを.sheetで表示しました。
左上のCancelボタンにアクションを追加することは可能でしょうか。
可能であれば、どのようにできるかを教えていただきたいです。
コードは以下のようになっています。
swift
1struct PostView: View { 2 3 @State var bool = true 4 5 6 var body: some View { 7 NavigationView { 8 Text("POOOOOSTTTTTTTTTTT") 9 .navigationTitle("Select Photo") 10 .navigationBarTitleDisplayMode(.inline) 11 .navigationBarItems(leading: Button(action: { 12 13 }, label: {Text("Back")}), 14 trailing: Button(action:{ 15 16 }, label: { 17 Text("Next") 18 })) 19 } 20 .sheet(isPresented: $bool, content: { 21 ImagePickerView() 22 }) 23 } 24 25 26} 27 28 29 30struct ImagePickerView: UIViewControllerRepresentable { 31 32 func makeUIViewController(context: UIViewControllerRepresentableContext<ImagePickerView>) -> UIViewController { 33 let controller = UIImagePickerController() 34 return controller 35 } 36 37 func updateUIViewController(_ uiViewController: ImagePickerView.UIViewControllerType, context: UIViewControllerRepresentableContext<ImagePickerView>) { 38 39 } 40} 41
あなたの回答
tips
プレビュー