博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OC-protocol
阅读量:5742 次
发布时间:2019-06-18

本文共 3913 字,大约阅读时间需要 13 分钟。

 from : http://www.cnblogs.com/wendingding/p/3709604.html

1.Protocol:就一个用途,用来声明一大堆的方法(不能声明成员变量),不能写实现。

2.只要某个类遵守了这个协议,就拥有了这个协议中的所有方法声明。

3.只要父类遵守了某个协议,那么子类也遵守。

4.Protocol声明的方法可以让任何类去实现,protocol就是协议。

5.OC不能继承多个类(单继承)但是能够遵守多个协议。继承(:),遵守协议(< >)

6.基协议:<NSObject>是基协议,是最根本最基本的协议,其中声明了很多最基本的方法。

7.协议可以遵守协议,一个协议遵守了另一个协议,就可以拥有另一份协议中的方法声明。

 

1 // 2 //  MyProtocol.h 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import 
10 11 //MyProtocol协议,这个协议遵守NSObject基协议12 @protocol MyProtocol
13 //在协议中可以声明很多有用的方法,但不能声明变量,也不能实现方法14 @required15 //required 必须要求实现16 -(void)myName;17 -(void)myAge;18 19 @optional20 //optional 可选21 -(void)myMomsName;22 23 24 @end
MyProtocol.h
1 // 2 //  MyProtocol2.h 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import 
10 11 @protocol MyProtocol2
12 13 @required14 15 -(void)studentName;16 -(void)studentAge;17 18 @end
MyProtocol2.h

 

1 // 2 //  Person.h 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import 
10 #import "MyProtocol.h"11 12 @interface Person : NSObject
//遵守协议13 14 @property (nonatomic,strong)NSString *personName;15 16 @end
Person.h
1 // 2 //  Person.m 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import "Person.h"10 11 @implementation Person12 13 //required14 -(void)myAge{15     NSLog(@"My age is 18 .");16 }17 18 -(void)myName{19     NSLog(@"My name is Mike");20 }21 22 //optional23 -(void)myMomsName{24     NSLog(@"可选的My mom's name is Lucy .");25 }26 27 @end
Person.m

 

1 // 2 //  Student.h 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import 
10 #import "MyProtocol2.h"11 #import "MyProtocol.h"12 13 @interface Student : NSObject
14 15 @end
Student.h
1 // 2 //  Student.m 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import "Student.h"10 11 @implementation Student12 13 -(void)studentName{14     NSLog(@"Student's name is Mary .");15 }16 17 -(void)studentAge{18     NSLog(@"Student's age is 14 .");19 }20 21 -(void)myAge{22     NSLog(@"My age is 20 .");23 }24 25 -(void)myName{26     NSLog(@"My name is Lucky .");27 }28 29 @end
Student.m

 

1 // 2 //  main.m 3 //  WDDDelegateTest 4 // 5 //  Created by LiuChanghong on 15/9/26. 6 //  Copyright © 2015年 LiuChanghong. All rights reserved. 7 // 8  9 #import 
10 #import "Person.h"11 #import "Student.h"12 13 int main(int argc, const char * argv[]) {14 @autoreleasepool {15 16 Person *person = [Person new];17 18 [person myName];19 [person myAge];20 [person myMomsName];21 22 Student *student = [Student new];23 [student myName];24 [student myAge];25 [student studentAge];26 [student studentName];27 28 }29 return 0;30 }
测试

 

输出结果

 

1.协议的定义

@protocol 协议名称 <NSObject>

//方法声明列表

@end;

2.如何遵守协议

(1)类遵守协议

@protocol 类名:父类名 <协议名称1,协议名称2>

@end

(2)协议遵守协议

@protocol 协议名称 <其他协议名称>

@end;

3.协议方法声明中的关键字

(1)required (默认)要求实现,若没有实现则警告但不报错

(2)Optional 不要求实现

4.定义变量时遵守协议的限制

类名<协议名称> *变量名    NSObject<.Myprotocol> *obj;

Id  <协议名称>  变量名   id  <.Myprotocol> obj1;

5.Property中声明的属性也可以做遵守协议的限制

@property (nonatomic ,strong ) 类名<协议名称> *属性名;

@property (nonatomic ,strong ) id<协议名称>  属性名;

6.补充知识:协议本身写在.h头文件中,但也可以定义在任何地方。当这个协议只有这个类使用遵守时,一般把协议写在这个类里边,当这个协议需要多个类去实现时,就写在外边单独的文件中。

 

转载于:https://www.cnblogs.com/liuchanghong/p/4841122.html

你可能感兴趣的文章
前端技术选型的遗憾和经验教训
查看>>
“亲切照料”下的领域驱动设计
查看>>
SRE工程师到底是做什么的?
查看>>
解读:Red Hat为什么收购Ansible
查看>>
Ossim下的安全合规管理
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>
siki学习之观察者模式笔记
查看>>
单元测试
查看>>
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
用Bootstrap写一份简历
查看>>
ZJU PAT 1023
查看>>
WMI远程访问问题解决方法
查看>>
从零开始学习IOS,(UILabel控件)详细使用和特殊效果
查看>>
Android开发历程_15(AppWidget的使用)
查看>>
阿花宝宝 Java 笔记 之 初识java
查看>>
7、设计模式-创建型模式-建造者模式
查看>>
Cesium官方教程11--建模人员必读
查看>>