标签:log 格式 定义 导入 nslog ati end object interface
Protocol翻译过来, 叫做”协议”
Protocol的作用
@protocol 协议名称 // 方法声明列表 @end
@interface 类名 : 父类 <协议名称1, 协议名称2,…> @end
@protocol SportProtocol <NSObject> - (void)playFootball; - (void)playBasketball; @end #import "SportProtocol.h" // 导入协议 @interface Studnet : NSObject<SportProtocol> // 遵守协议 @end @implementation Student // 实现协议方法 - (void)playBasketball { NSLog(@"%s", __func__); } // 实现协议方法 - (void)playFootball { NSLog(@"%s", __func__); } @end
标签:log 格式 定义 导入 nslog ati end object interface
原文地址:http://www.cnblogs.com/xufengyuan/p/6607641.html