web-dev-qa-db-ja.com

押すとUIAlertViewボタントリガー機能を作成します

現在、UIAlertViewを表示するために次のコードを使用しています。

_UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Today's Entry Complete"
                        message:@"Press OK to submit your data!" 
                       delegate:nil 
              cancelButtonTitle:@"OK" 
              otherButtonTitles: nil];
    [alert show];
    [alert release];
_

「OK」を押すと、-(void)submitDataなどの関数がトリガーされるようにするにはどうすればよいですか。

12
user559142

注:

重要:UIAlertViewはiOS 8で非推奨になりました(UIAlertViewDelegateも非推奨になっていることに注意してください)。iOS8以降でアラートを作成および管理するには、代わりにUIAlertControllerを使用します。 UIAlertControllerStyleAlertのpreferredStyleを使用します。

このチュートリアルをチェックしてください

「非推奨」とは???

Objectvie C

.hファイル

    @interface urViewController : UIViewController <UIAlertViewDelegate> {

.mファイル

// Create Alert and set the delegate to listen events
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Today's Entry Complete"
                                                message:@"Press OK to submit your data!"
                                               delegate:self
                                      cancelButtonTitle:nil
                                      otherButtonTitles:@"OK", nil];

// Set the tag to alert unique among the other alerts.
// So that you can find out later, which alert we are handling
alert.tag = 100;

[alert show];


//[alert release];


-(void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{


    // Is this my Alert View?
    if (alertView.tag == 100) {
        //Yes


    // You need to compare 'buttonIndex' & 0 to other value(1,2,3) if u have more buttons.
    // Then u can check which button was pressed.
        if (buttonIndex == 0) {// 1st Other Button

            [self submitData];

        }
        else if (buttonIndex == 1) {// 2nd Other Button


        }

    }
    else {
     //No
        // Other Alert View

    }

}

Swift

迅速な方法は、新しいUIAlertControllerとクロージャーを使用することです。

    // Create the alert controller
    let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert)

    // Create the actions
    let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) {
        UIAlertAction in
        NSLog("OK Pressed")
    }
    let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) {
        UIAlertAction in
        NSLog("Cancel Pressed")
    }

    // Add the actions
    alertController.addAction(okAction)
    alertController.addAction(cancelAction)

    // Present the controller
    self.presentViewController(alertController, animated: true, completion: nil)

クラスのインターフェースで宣言されていない複数のUIAlertViewインスタンスを使用している場合は、次のように、デリゲートメソッドでインスタンスを識別するタグを設定することもできます。

クラスファイルmyClass.mの上のどこかに

#define myAlertViewsTag 0

uIAlertViewの作成:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"My Alert"
    message:@"please press ok or cancel"
    delegate:self
    cancelButtonTitle:@"Cancel"
    otherButtonTitles:@"OK", nil];
alert.tag = myAlertViewsTag;
[alert show];
[alert release];

デリゲートメソッド:

-(void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if (alertView.tag == myAlertViewsTag) {
        if (buttonIndex == 0) {
            // Do something when cancel pressed
        } else {
            // Do something for ok
        }
    } else {
        // Do something with responses from other alertViews
    }
}
8

Alertviewを割り当てるときにデリゲートを設定してから、UIAlertViewDelegateメソッドの1つを使用して、独自のメソッドを呼び出す必要があります。次に例を示します。

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Today's Entry Complete"
                                                message:@"Press OK to submit your data!"
                                               delegate:self
                                      cancelButtonTitle:@"OK"
                                      otherButtonTitles:nil];
[alert show];
[alert release];

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    [self submitData];
}
1
InsertWittyName

表示する前に、delegateUIAlertViewを設定する必要があります。次に、デリゲートコールバックで次のように作業を行います。

-(void)alertView:(UIAlertView*)alert didDismissWithButtonIndex:(NSInteger)buttonIndex;
{
    if ([[alert buttonTitleAtIndex] isEqualToString:@"Do it"]) {
        // Code to execute on Do it button selection.
    }
}

https://github.com/Jayway/CWUIKit にある私のCWUIKitプロジェクトには、UIAlertViewに追加があり、同じことをブロックで実行できます。これに対するアラートの作成、表示、および処理の両方に同じ操作を再利用します。

[[UIAlertView alertViewWithTitle:@"My Title"
                         message:@"The Message"
               cancelButtonTitle:@"Cancel"
  otherTitlesAndAuxiliaryActions:@"Do it", 
                                 ^(CWAuxiliaryAction*a) {
                                    // Code to execute on Do it button selection.
                                 }, nil] show];
1
PeyloW

IOS8からApple現在非推奨となっているUIAlertViewの代わりに使用できる新しいUIAlertControllerクラスを提供し、減価償却メッセージにも記載されています

UIAlertViewは非推奨です。代わりにUIAlertControllerStyleAlertのpreferredStyleでUIAlertControllerを使用してください

だからあなたはこのようなものを使うべきです

Objective C

UIAlertController * alert = [UIAlertController
                alertControllerWithTitle:@"Title"
                                 message:@"Message"
                          preferredStyle:UIAlertControllerStyleAlert];

   UIAlertAction* yesButton = [UIAlertAction
                        actionWithTitle:@"Yes, please"
                                  style:UIAlertActionStyleDefault
                                handler:^(UIAlertAction * action) {
                                    //Handle your yes please button action here
                                }];

   UIAlertAction* noButton = [UIAlertAction
                            actionWithTitle:@"No, thanks"
                                      style:UIAlertActionStyleDefault
                                    handler:^(UIAlertAction * action) {
                                       //Handle no, thanks button                
                                    }];

   [alert addAction:yesButton];
   [alert addAction:noButton];

   [self presentViewController:alert animated:YES completion:nil];

Swift

迅速な方法は、新しいUIAlertControllerとクロージャーを使用することです。

    // Create the alert controller
    let alertController = UIAlertController(title: "Title", message: "Message", preferredStyle: .Alert)

    // Create the actions
    let okAction = UIAlertAction(title: "OK", style: UIAlertActionStyle.Default) {
        UIAlertAction in
        NSLog("OK Pressed")
    }
    let cancelAction = UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel) {
        UIAlertAction in
        NSLog("Cancel Pressed")
    }

    // Add the actions
    alertController.addAction(okAction)
    alertController.addAction(cancelAction)

    // Present the controller
    self.presentViewController(alertController, animated: true, completion: nil)
0

ブロックを使用する場合は、 MKAdditions を使用して、複数のUIAlertViewに対してもこれを簡単に実現できます。

このサンプルのようなコードを使用するだけです。

[[UIAlertView alertViewWithTitle:@"Test" 
                        message:@"Hello World" 
              cancelButtonTitle:@"Dismiss" 
              otherButtonTitles:[NSArray arrayWithObjects:@"First", @"Second", nil]
                      onDismiss:^(int buttonIndex)
 {
     NSLog(@"%d", buttonIndex);
 }
 onCancel:^()
 {
     NSLog(@"Cancelled");         
 }
 ] show];

このチュートリアルで詳細を見つけることができます: http://blog.mugunthkumar.com/coding/ios-code-block-based-uialertview-and-uiactionsheet

0

もう少し説明します、

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
    {
       //handles title you've added for cancelButtonTitle
        if(buttonIndex == [alertView cancelButtonIndex]) {
            //do stuff
        }else{
           //handles titles you've added for otherButtonTitles
            if(buttonIndex == 1) {
                // do something else
            }
            else if(buttonIndex == 2) {
                // do different thing
            }
        }
    }

例、

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Need your action!" 
message:@"Choose an option to continue!" delegate:self cancelButtonTitle:@"Not Need!" 
otherButtonTitles:@"Do Something", @"Do Different", nil];
[alert show];

enter image description here

(iOS7のスクリーンショットです)

0
Hemang