0

我有一些常规警报视图和一个名为“UINotificationAlertView”的自定义警报视图我希望自定义 UINotificationAlertView 上的“确定”按钮单击事件使用第二种方法而不是第一种方法。我怎样才能做到这一点?我是目标 c 的新手,如果这是一个愚蠢的问题,我很抱歉。

UINotificationAlertView *message = [[UINotificationAlertView alloc]
                                    initWithTitle:@""
                                    message:row.alertBody
                                    delegate:self.
                                    cancelButtonTitle:@"OK"                      
                                    otherButtonTitles:nil];

App delgate 中的两种方法:

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

        if(buttonIndex == kNo) {
        } else {
            //Close by suspending...
            [[UIApplication sharedApplication] suspend];
        }
    }
    - (void)alertNotificationView:(UINotificationAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
        NSLog(@"phils new delegate");
        if(buttonIndex == kNo) {
        } else {
            //Close by suspending...
            [[UIApplication sharedApplication] suspend];
        }
    }
4

1 回答 1

1

尝试

在您的 .h 文件中,输入:

@interface YourClassName : UIViewController<UIAlertViewDelegate>

在您的 .m 文件中:

message.delegate = self;

于 2012-06-14T13:52:16.437 回答