Xcode 開発で、iOS 9.0以降でアラートメッセージを表示させる方法をまとめました。
ーーーエラーメッセージーー
‘UIAlertView’ is deprecated: first deprecated in iOS 9.0 – UIAlertView is deprecated. Use UIAlertController with a preferredStyle of UIAlertControllerStyleAlert instead
ーーー日本語訳ーーー
‘UIAlertView’は推奨されていません.iOS 9.0では最初に非推奨です。 – UIAlertViewは推奨されていません。 代わりにUIAlertControllerStyleAlertのpreferredStyleを使用してUIAlertControllerを使用してください
2 | UIAlertView *alert = [[UIAlertView alloc] |
3 | initWithTitle: @"アラートメッセージ" |
6 | cancelButtonTitle: @"Cancel" |
7 | otherButtonTitles: @"OK" , nil ]; |
13 | UIAlertController *alertController = [UIAlertController |
14 | alertControllerWithTitle: @"アラートメッセージ" |
16 | preferredStyle:UIAlertControllerStyleAlert]; |
18 | [ self presentViewController:alertController animated: YES completion: nil ]; |
20 | [alertController addAction:[UIAlertAction actionWithTitle: @"OK" |
21 | style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { |
27 | [alertController addAction:[UIAlertAction actionWithTitle: @"NG" |
28 | style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { |
33 | [alertController addAction:[UIAlertAction actionWithTitle: @"cancel" |
34 | style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { |