加入收藏 | 设为首页 | 会员中心 | 我要投稿 PHP编程网 - 黄冈站长网 (http://www.0713zz.com/)- 数据应用、建站、人体识别、智能机器人、语音技术!
当前位置: 首页 > 教程 > 正文

iOS UIAlertview的事件解决

发布时间:2021-11-23 14:23:53 所属栏目:教程 来源:互联网
导读:1.开始想用UIView做密码输入 2.后来觉得麻烦,改用UIAlertview 3.因为我做的是SBSETTINGS开发,不能提供UIAlertView 事件处理所需要的self.说到这个UIAlertView不得不吐槽一下,APPLE绝对是极限方便使用者,非常虐待开发者的. 为了保证流畅,连UIAlertView的YES N

1.开始想用UIView做密码输入
 
2.后来觉得麻烦,改用UIAlertview
 
3.因为我做的是SBSETTINGS开发,不能提供UIAlertView 事件处理所需要的self.说到这个UIAlertView不得不吐槽一下,APPLE绝对是极限方便使用者,非常虐待开发者的.
 
为了保证流畅,连UIAlertView的YES NO事件都TNND要delegate
 
UIAlertView和UIActionSheet都采用了Delegate模式,在同一个视图控制器中使用多个UIAlertView或UIActionSheet时控制器需要同时充当它们的delegate,这种情况下处理函数中通常需要通过tag进行区分后处理。这样就经常会造成如下代码:
 
- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex {
    if ([alertView tag] == LOGIN_ERROR_ALERT) {    // it's alert for login error
        if (buttonIndex == 0) {     // and they clicked OK.
            // do stuff
        }
    }
    else if ([alertView tag] == UPDATE_ERROR_ALERT) {   // it's alert for update error
        if (buttonIndex == 0) {     // and they clicked OK.
            // do stuff
        }   
    }
    else {
    }
}
 
4.这回郁闷了,无法直接用上面的方式处理按钮事件.想想我肯定不是第一个倒霉孩子,果然给我找到一种UIAlsertview block方式
简单来说,这其实就是把按钮事件封装成一个方法块(这说法不严谨),然后把这个块做为参数传递给UIAlertView.实际上还是回调,不过要容易理解也容易处理些.
 
代理在 https://github.com/jivadevoe/UIAlertView-Blocks
 
先写好方法块
 
RIButtonItem *cancelItem = [RIButtonItem item];
cancelItem.label = @"No";
cancelItem.action = ^
{
    //为NO时的处理
};
 
RIButtonItem *deleteItem = [RIButtonItem item];
deleteItem.label = @"Yes";
deleteItem.action = ^
{
   //为YES时的处理
    [context deleteObject:theObject];
};
//调用
 
 
 
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Delete This Item?"
                                                    message:@"Are you sure you want to delete this really important thing?"
                                           cancelButtonItem:cancelItem
                                           otherButtonItems:deleteItem, nil];
[alertView show];
 
 
 
别忘记
 
#include "RIButtonItem.h"
#include "UIAlertView+Blocks.h"

(编辑:PHP编程网 - 黄冈站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读