protocol基本使用

2016-12-13  本文已影响17人  Coder007

protocol

protocol语法格式
@protocol 协议名称
// 方法声明列表
@end
@interface 类名:父类<协议名称1,协议名称2,......>
@end
protocol 和继承的区别
protocol的使用注意
基协议
@required和@optional关键字
@protocol SportDelegate <NSObject>

@required
- (void)playFootball;

@optional
- (void)palyBasketball;
@end
代理设计模式
上一篇下一篇

猜你喜欢

热点阅读