teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

0

2019/12/04 07:10

投稿

takabosoft
takabosoft

スコア8356

answer CHANGED
@@ -5,9 +5,8 @@
5
5
 
6
6
  ```swift
7
7
  // キャンセルボタン
8
- let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル", style: UIAlertActionStyle.Cancel, handler:{
8
+ let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル", style: .cancel, handler: { action in
9
9
  // ボタンが押された時の処理を書く(クロージャ実装)
10
- (action: UIAlertAction!) -> Void in
11
10
  print("Cancel")
12
11
  })
13
12