IOS学习之委托和block

 转自 http://blog.csdn.net/pony_maggie/article/details/25775069

这篇文章建议和前一篇一起看, 另外先弄清楚IOS的block是神马东东。

 

委托和block是IOS上实现回调的两种机制。Block基本可以代替委托的功能,而且实现起来比较简洁,比较推荐能用block的地方不要用委托。

 

本篇的demo和前一篇是同一个,可以到github上下载不同的版本, 源码下载地址:

https://github.com/pony-maggie/DelegateDemo

 

 

A类(timeControl类)的头文件先要定义block,代码如下:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. //委托的协议定义  
  2. @protocol UpdateAlertDelegate <NSObject>  
  3. - (void)updateAlert;  
  4. @end  
  5.   
  6.   
  7.   
  8. @interface TimerControl : NSObject  
  9. //委托变量定义  
  10. @property (nonatomic, weak) id<UpdateAlertDelegate> delegate;  
  11.   
  12.   
  13. //block  
  14. typedef void (^UpdateAlertBlock)();  
  15. @property (nonatomiccopy) UpdateAlertBlock updateAlertBlock;  
  16.   
  17. - (void) startTheTimer;  
  18.      
  19. @end  


 

A类的实现文件,原来用委托的地方改成调用block:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. - (void) timerProc  
  2. {  
  3.     //[self.delegate updateAlert];//委托更新UI  
  4.     //block代替委托  
  5.     if (self.updateAlertBlock)  
  6.     {  
  7.         self.updateAlertBlock();  
  8.     }  
  9. }  


 

再来看看视图类,实现block即可:

[objc]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. - (void)viewDidLoad  
  2. {  
  3.     [super viewDidLoad];  
  4.     // Do any additional setup after loading the view, typically from a nib.  
  5.     TimerControl *timer = [[TimerControl alloc] init];  
  6.     timer.delegate = self//设置委托实例  
  7.       
  8.     //实现block  
  9.     timer.updateAlertBlock = ^()  
  10.     {  
  11.         UIAlertView *alert=[[UIAlertView alloc] initWithTitle:@"提示" message:@"时间到" delegate:self cancelButtonTitle:nil otherButtonTitles:@"确定",nil];  
  12.           
  13.         alert.alertViewStyle=UIAlertViewStyleDefault;  
  14.         [alert show];  
  15.     };  
  16.       
  17.       
  18.       
  19.     [timer startTheTimer];//启动定时器,定时5触发  
  20. }  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值