Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2618428
  • 博文数量: 877
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5921
  • 用 户 组: 普通用户
  • 注册时间: 2013-12-05 12:25
个人简介

技术的乐趣在于分享,欢迎多多交流,多多沟通。

文章分类

全部博文(877)

文章存档

2021年(2)

2016年(20)

2015年(471)

2014年(358)

2013年(26)

分类: iOS平台

2015-08-06 11:15:09

objective-c protocol delegate
http://southking.iteye.com/blog/1454460

protocol-协议,就是使用了这个协议后就要按照这个协议来办事,协议要求实现的方法就一定要实现。 

delegate-委托,顾名思义就是委托别人办事,就是当一件事情发生后,自己不处理,让别人来处理。

当一个A view 里面包含了B view

b view需要修改a view界面,那么这个时候就需要用到委托了。

需要几个步骤

1。首先定一个协议

2。a view实现协议中的方法

3。b view设置一个委托变量

4。把b view的委托变量设置成a view,意思就是 ,b view委托a view办事情。

5。事件发生后,用委托变量调用a view中的协议方法

例子:

 

Java代码  收藏代码
  1. B_View.h:  
  2. @protocol UIBViewDelegate <NSObject>  
  3. @optional  
  4. - (void)ontouch:(UIScrollView *)scrollView; //声明协议方法  
  5. @end  
  6. @interface BView : UIScrollView<UIScrollViewDelegate>   
  7. {  
  8. id< UIBViewDelegate > _touchdelegate; //设置委托变量  
  9. }  
  10. @property(nonatomic,assign) id< UIBViewDelegate > _touchdelegate;   
  11. @end  
  12. B_View.mm:  
  13. @synthesize _touchdelegate;  
  14. - (id)initWithFrame:(CGRect)frame {  
  15. if (self = [super initWithFrame:frame]) {  
  16. // Initialization code  
  17. _touchdelegate=nil;  
  18. }  
  19. return self;  
  20. }  
  21. - (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event  
  22. {  
  23. [super touchesBegan:touches withEvent:event];  
  24.   
  25. if(_touchdelegate!=nil && [_touchdelegate respondsToSelector: @selector(ontouch:) ] == true)   
  26. [_touchdelegate ontouch:self]; //调用协议委托  
  27. }  
  28. @end  
  29. A_View.h:  
  30. @interface AViewController : UIViewController < UIBViewDelegate >  
  31. {  
  32. BView *m_BView;  
  33. }  
  34. @end  
  35.   
  36. A_View.mm:  
  37. - (void)viewWillAppear:(BOOL)animated  
  38. {  
  39. m_BView._touchdelegate = self; //设置委托  
  40. [self.view addSubview: m_BView];  
  41.   
  42. }  
  43. - (void)ontouch:(UIScrollView *)scrollView  
  44. {  
  45. //实现协议  
  46. }  
阅读(241) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~