前提・実現したいこと
Swiftでお絵かきアプリを作っています。
保存ボタンを押すと絵のスクリーンショットを撮ってアプリ内に保存して、読み込みボタンを押した時に保存したデータをリスト表示しようと思っています。
該当のソースコード
Swift
1import UIKit 2 3class open: UIViewController { 4 5 // MARK: Properties 6 7 var images: UIImage = UIImage(imageLiteralResourceName: "NO_IMAGE.png") 8 9 // MARK: Actions 10 11 override func viewDidLoad() { 12 super.viewDidLoad() 13 // Do any additional setup after loading the view. 14 15 // ここにリスト表示するプログラムを記載 16 } 17 18 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 19 if segue.identifier 20 == "openToEditor" { 21 if let editor: Editor = segue.destination as? Editor { 22 editor.imag = images 23 } 24 } 25 } 26} 27
補足情報
言語: Swift5
環境: Xcode11.3.1 (11C504)
回答2件
あなたの回答
tips
プレビュー