単純なUIAlertViewを追加する


108

「OK」ボタンが1つあるシンプルなUIAlertViewを作成するために使用できるスターターコードは何ですか?


[OK]ボタンがクリックされるまで、アクションの実行を待機しますか?
sudo rm -rf 2010

1
@sudo rm -rf:いいえ、「Dee dee doo doo」か何かを言うだけでいいです。アクションは不要です。
Linuxmint 2010

回答:


230

アラートを表示する場合は、次のようにします。

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"ROFL" 
                                                    message:@"Dee dee doo doo." 
                                                    delegate:self 
                                                    cancelButtonTitle:@"OK" 
                                                    otherButtonTitles:nil];
[alert show];

    // If you're not using ARC, you will need to release the alert view.
    // [alert release];

ボタンがクリックされたときに何かを実行したい場合は、このデリゲートメソッドを実装します。

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    // the user clicked OK
    if (buttonIndex == 0) {
        // do something here...
    }
}

デリゲートがUIAlertViewDelegateプロトコルに準拠していることを確認してください:

@interface YourViewController : UIViewController <UIAlertViewDelegate> 

4
複数のアラートビューがある場合は、タグを使用して、だれがデリゲートを呼び出したかを判別できます。
Pnar Sbi Wer、2014

71

他の回答はすでにiOS 7以前の情報を提供していますUIAlertViewが、iOS 8では非推奨です

iOS 8以降ではを使用する必要がありますUIAlertController。これは、両方の代替であるUIAlertViewUIActionSheet。ドキュメント:UIAlertController Class Reference。そしてNSHipsterに関する素晴らしい記事。

簡単なアラートビューを作成するには、次の操作を実行できます。

UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Title"
                                                                         message:@"Message"
                                                                  preferredStyle:UIAlertControllerStyleAlert];
//We add buttons to the alert controller by creating UIAlertActions:
UIAlertAction *actionOk = [UIAlertAction actionWithTitle:@"Ok"
                                                   style:UIAlertActionStyleDefault
                                                 handler:nil]; //You can use a block here to handle a press on this button
[alertController addAction:actionOk];
[self presentViewController:alertController animated:YES completion:nil];

スウィフト3/4/5:

let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .alert)
//We add buttons to the alert controller by creating UIAlertActions:
let actionOk = UIAlertAction(title: "OK",
    style: .default,
    handler: nil) //You can use a block here to handle a press on this button

alertController.addAction(actionOk)

self.present(alertController, animated: true, completion: nil)

iOS 8で追加されたため、このコードはiOS 7以前では機能しません。残念ながら、今のところ、バージョンチェックを次のように使用する必要があります。

NSString *alertTitle = @"Title";
NSString *alertMessage = @"Message";
NSString *alertOkButtonText = @"Ok";

if (@available(iOS 8, *)) {
    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:alertTitle
                                                        message:alertMessage
                                                       delegate:nil
                                              cancelButtonTitle:nil
                                              otherButtonTitles:alertOkButtonText, nil];
    [alertView show];
}
else {
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:alertTitle
                                                                             message:alertMessage
                                                                      preferredStyle:UIAlertControllerStyleAlert];
    //We add buttons to the alert controller by creating UIAlertActions:
    UIAlertAction *actionOk = [UIAlertAction actionWithTitle:alertOkButtonText
                                                       style:UIAlertActionStyleDefault
                                                     handler:nil]; //You can use a block here to handle a press on this button
    [alertController addAction:actionOk];
    [self presentViewController:alertController animated:YES completion:nil];
}

スウィフト3/4/5:

let alertTitle = "Title"
let alertMessage = "Message"
let alertOkButtonText = "Ok"

if #available(iOS 8, *) {
    let alertController = UIAlertController(title: alertTitle, message: alertMessage, preferredStyle: .alert)
    //We add buttons to the alert controller by creating UIAlertActions:
    let actionOk = UIAlertAction(title: alertOkButtonText,
        style: .default,
        handler: nil) //You can use a block here to handle a press on this button

    alertController.addAction(actionOk)
    self.present(alertController, animated: true, completion: nil)
}
else {
    let alertView = UIAlertView(title: alertTitle, message: alertMessage, delegate: nil, cancelButtonTitle: nil, otherButtonTitles: alertOkButtonText)
    alertView.show()
}

UPD:Swift 5用に更新されました。Obj-Cの古いクラスの存在チェックを可用性チェックに置き換えました。


1
機能するが機能しないコードを投稿するべきではありません。MyOwnUtilsClassを使用する代わりに、iOSバージョンをチェックするコードを記述してください。
csharpwinphonexaml 2016年

1
@csharpwinphonexaml、私は同意しません。それはコードの不必要な複雑化でしょう。現在のバージョンはUIAlerView / UIAlertControllerの使用法を示していますが、システムバージョンチェックはこの質問のトピックではありません。Swiftには、OSのバージョンを確認する1行のメソッドが組み込まれているので、それを使用しました。Objective-Cにはいくつかの方法がありますが、どれもエレガントではありません。
FreeNickname 2016年

1
誰もがすべてのコードを理解し、それを有効なコードに置き換える方法を知っているエキスパートではないことを知っているので、私はそれを言いました。
csharpwinphonexaml 2016年

10

UIAlertViewはiOS 8では非推奨です。そのため、iOS 8以降でアラートを作成するには、UIAlertControllerを使用することをお勧めします。

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"Title" message:@"Alert Message" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *defaultAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action){

    // Enter code here
}];
[alert addAction:defaultAction];

// Present action where needed
[self presentViewController:alert animated:YES completion:nil];

これは私がそれを実装した方法です。


9
UIAlertView *alert = [[UIAlertView alloc]
 initWithTitle:@"Title" 
 message:@"Message" 
 delegate:nil //or self
 cancelButtonTitle:@"OK"
 otherButtonTitles:nil];

 [alert show];
 [alert autorelease];

9
UIAlertView *myAlert = [[UIAlertView alloc] 
                         initWithTitle:@"Title"
                         message:@"Message"
                         delegate:self
                         cancelButtonTitle:@"Cancel"
                         otherButtonTitles:@"Ok",nil];
[myAlert show];

9

以前の2つの回答(ユーザー "sudo rm -rf"と "Evan Mulawski"の回答)の補足として、アラートビューをクリックしたときに何もしない場合は、割り当て、表示、解放するだけです。デリゲートプロトコルを宣言する必要はありません。


3

以下は、UIAlertを閉じるための「ok」ボタンが1つしかない完全なメソッドです。

- (void) myAlert: (NSString*)errorMessage
{
    UIAlertView *myAlert = [[UIAlertView alloc]
                          initWithTitle:errorMessage
                          message:@""
                          delegate:self
                          cancelButtonTitle:nil
                          otherButtonTitles:@"ok", nil];
    myAlert.cancelButtonIndex = -1;
    [myAlert setTag:1000];
    [myAlert show];
}


0

配列データによる簡単な警告:

NSString *name = [[YourArray objectAtIndex:indexPath.row ]valueForKey:@"Name"];

NSString *msg = [[YourArray objectAtIndex:indexPath.row ]valueForKey:@"message"];

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:name
                                                message:msg
                                               delegate:self
                                      cancelButtonTitle:@"OK"
                                      otherButtonTitles:nil];
[alert show];

-1

Swift 3の場合:

let alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.alert)
alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil))
self.present(alert, animated: true, completion: nil)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.