PUROGU LADESU

ポエムがメインのブログです。

2021-01-24から1日間の記事一覧

【Swift】画面遷移

画面の呼び出し 呼び出される画面 class NotificationDetaliViewController: UIViewController { var notification: UserNotification! var result: Bool // storyboardでidentirierを設定済み static func fromStoryboard() -> NotificationDetaliViewContr…

【Swift】DispatchQueueの中でAlertを出す

何か処理をして終了時にポップアップさせる DispatchQueue.global(qos: .userInitiated).async { // バックグラウンド処理を実行 doSomething() // メインスレッドで処理 DispatchQueue.main.async { let alert = UIAlertController(title: title, message: …