浅谈Objective-C协议和委托

来源:互联网 发布:淘宝代理一件代发 编辑:程序博客网 时间:2024/05/19 14:18

【原文:http://mobile.51cto.com/iphone-280780.htm】

 

Objective-C协议和委托是本文呢要介绍的内容,主要介绍了Objective-C中协议和委托的方式,先来看详细内容。

AD:


    Objective-C协议委托是本文呢要介绍的内容,主要介绍了Objective-C协议委托的方式,通过实例讲解让我们更快更方便的去学习Objective-C,先来看详细内容。

    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中的协议方法

    例子:

    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. if(_touchdelegate!=nil && [_touchdelegate respondsToSelector: @selector(ontouch:) ] == true)
    25. [_touchdelegate ontouch:self]; //调用协议委托
    26. }
    27. @end
    28. A_View.h:
    29. @interface AViewController : UIViewController < UIBViewDelegate >
    30. {
    31. BView *m_BView;
    32. }
    33. @end
    34. A_View.mm:
    35. - (void)viewWillAppear:(BOOL)animated
    36. {
    37. m_BView._touchdelegate = self; //设置委托
    38. [self.view addSubview: m_BView];
    39. }
    40. - (void)ontouch:(UIScrollView *)scrollView
    41. {
    42. //实现协议
    43. }

    小结:浅谈Objective-C协议委托的内容介绍完了,希望本文对你有所帮助!