在哪里放置常见的UIAlertView代码

时间:2012-09-24 20:59:54

标签: iphone

我有一个密码UIAlertView,我们要求用户。我需要根据场景,从downloadViewController(用户下载数据后),切换到他们的数据(如果用户有多个帐户,每个帐户有密码)以及应用程序时的不同视图询问它从睡眠中唤醒(来自应用代表)。

我有一个常见的UIAlertView代码,它基本上会检查数据库的密码和内容。有一个放置这个通用代码的好地方吗?我觉得我正在复制并粘贴警报的显示和此警报的委托方法。在某些视图控制器中,也会有其他警报,我必须通过特定ViewController中的UIAlertViewDelegate响应这些警报。

1 个答案:

答案 0 :(得分:1)

您可以创建这样的类别,然后重复使用代码:

*。h file

@interface UIViewController(Transitions)

- (void) showAlertWithDelegate: (id) delegate;

@end

* .m file

-(void) showAlertWithDelegate:(id)delegate {

    id _delegate = ( delegate == nil) ? self : delegate;
    UIAlertView *alert = [[UIAlertView alloc]
                          initWithTitle: NSLocalizedString(@"Alert Text",@"Alert Text")
                          message: NSLocalizedString( @"Msg Alert",@"Msg Alert")
                          delegate:_delegate 
                          cancelButtonTitle:nil
                          otherButtonTitles: NSLocalizedString(@"OK",@"OK"),nil];
    [alert setTag:0]; //so we know in the callback of the alert where we come from - in case we have multiple different alerts
    [alert show];
}

//the local callback for the alert - this handles the case when we call the alert with delegate nil
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    D_DBG(@"%i %i",[alertView tag],buttonIndex);
}

在您需要警报的UIViewController类中导入* .h文件。

现在,如果你这样打电话:

   [self showAlertWithDelegate:nil];

它将显示您的警报,代表将是已实施的

 - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex

在界面中,当你这样称呼它时:

   [self showAlertWithDelegate:self];

您需要提供回调

 - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex

在您收到的课程中,您可以处理用户按下的任何内容 - 与界面中实现的内容不同。