码迷,mamicode.com
首页 >  
搜索关键字:uialertview-blocks    ( 3个结果
UIAlertView+Blocks.h
#import typedef void (^DismissBlock)(int buttonIndex);typedef void (^CancelBlock)();@interface UIAlertView (Blocks) + (UIAlertView*) showAlertViewWit....
分类:其他好文   时间:2015-09-10 00:30:32    阅读次数:129
使用第三方的支持Block 的UIAlertView
github 网址:https://github.com/jivadevoe/UIAlertView-Blocks使用在Pods的Podfile里加入:pod 'UIAlertView-Blocks', '~> 1.0'运行命令: pod update 代码RIButtonItem *cancelItem = [RIButtonItem itemWithLabel:@"No" action:^{...
分类:其他好文   时间:2015-06-10 15:43:09    阅读次数:140
为UIAlertView添加block支持
系统自带的UIAlertView只能支持delegate方式. 如果你只有一个UIAlertView这种方式可能无关紧要. 但如果你有二个或多个UIAlertView, 你需要在委托方法中进行判断是哪个UIAlertView实例的产生的委托, 接着又要判断是响应哪个button. 如果你曾经这样做过, 想想这是多杂的代码. Objective-C是支持块代码的, 如果对UIAlertView添加块...
分类:其他好文   时间:2014-07-09 09:55:44    阅读次数:256
3条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!