2020-05-04から1日間の記事一覧

Notification送信と受信

サンプル:送信側は受信側にテーブルリロードを要求する。 Notification名前定義: extension NSNotification.Name { static let reload = Self.init("reload") } 送信側: NotificationCenter.default.post(name: .reload, object: nil) 受信側: override …

Inputboxをalertで表示する

サンプル:alert表示のInputboxで現在のViewControllerのname属性を修正するロジック let ac = UIAlertController(title: "New Name", message: "", preferredStyle: .alert) let done = UIAlertAction(title: "Done", style: .default) { [weak self, weak …