conformsToProtocol:@protocol()的理解和用法

昨天开会大家讨论了这个问题~但是没达搞清楚~私底下查查看吧~网上搜到的结果,当做笔记,记在这里,希望方便以后自己或者大家前来回顾、

  1. <pre name="code" class="cpp">//conformsToProtocol:@protocol()是用来检查对象是否实现了指定协议类的方法  
  2. //例子如下,在例子当中会有适当的注释,以助理解这个方法:  
  3.   
  4. @protocol MyProtocol  
  5.   
  6. - (void) doSomething;  
  7.   
  8. @end  
  9.   
  10. @interface MyClass : NSObject<MyProtocol>//直接符合协议的类  
  11. {  
  12. }  
  13.   
  14. @end  
  15.   
  16. @implementation MyClass  
  17.   
  18. - (void) doSomething {   
  19. }  
  20.   
  21. @end  
  22.   
  23. @interface MyOtherClass : MyClass//继承了符合协议的类,即其父类符合协议。  
  24. {  
  25.   
  26. }  
  27.   
  28. @end  
  29.   
  30. @implementation MyOtherClass  
  31.   
  32. - (void) doSomething {  
  33. }  
  34.   
  35. @end  
  36.   
  37.   
  38. int main (int argc, const char * argv[])   
  39. {  
  40.     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];  
  41.   
  42.     MyClass *obj_one = [MyClass new];  
  43.     BOOL one_conforms = [obj_one conformsToProtocol:@protocol(MyProtocol)];  
  44.   
  45.     MyOtherClass *obj_two = [MyOtherClass new];  
  46.   
  47.     //obj_two是类的实例对象,和父类相关,其父类符合协议,则其亦符合。  
  48.   
  49.     BOOL two_conforms = [obj_two conformsToProtocol:@protocol(MyProtocol)];  
  50.     NSLog(@"obj_one conformsToProtocol: %d", one_conforms);//output:YES   
  51.     NSLog(@"obj_two conformsToProtocol: %d", two_conforms);//output:YES   
  52.     [pool drain]; return 0;  
  53. }  
  54.   
  55. //Output:  
  56.     obj_one conformsToProtocol: 1  
  57.     obj_two conformsToProtocol: 1  
  58.   
  59. //Whereas:  
  60.      MyOtherClass *obj_two = [MyOtherClass new];  
  61.      //class_conformsToProtocol是只检查当前类符不符合协议,和其父类无关。  
  62.      BOOL conforms_two = class_conformsToProtocol([obj_two class], @protocol(MyProtocol));  
  63.      NSLog(@"obj_two conformsToProtocol: %d", conforms_two);//output:NO  
  64.   
  65. //Output:  
  66.      obj_two conformsToProtocol: 0</pre><span style="color:#CC0000">在代理调用是,检查其代理是否符合协议,或者使用 respondsToSelector 检查对象能否响应指定的消息,<br>  
  67. 是避免代理在回调时因为没有实现代理函数而程序崩溃的一个有效的方式</span>  
  68. <pre></pre>  
  69. <pre></pre>  
  70. <pre></pre>  
  71. <pre></pre>  
  72. <pre></pre> 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值