Objective-C学习文档之协议使用方法
Objective-C学习文档之协议使用方法是本文要介绍的内容,主要是来了解并学习Objective-C中协议的问题,具体内容来看本文内容详解。
一、协议的定义
@protocol test -(void) testpocol:(int)t; @end
二、协议的继承
h头文件
#import “test.h” //导入协议 @interface testViewController:UIViewController <test>{ //id<test> testp; }
m实现文件
@implementation testViewController -(void)viewDidLoad{ [super viewDidLoad]; //调用实现方法的类 testdiaoyong *td=[[testdiaoyong alloc] init]; td.testd=self; 把当前实现协议的类对象赋给需要使用的地方 //也可以使用下面的方法传递协议 [td setpoco:self] } -(void) testpocol:(int)s{ NSLog(@"testpocol.........%d",s); } @end
三、调用协议
相关推荐
fort0 2020-05-16
81570790 2020-04-16
86540698 2020-04-08
zhoutaifeng 2020-03-07
好好学习天天 2020-03-06
InterestSoul 2020-02-17
82467413 2019-12-31
84407518 2012-07-16
81570790 2013-07-01
83254851 2013-08-29
84334052 2019-11-19
86540698 2019-11-19
84467715 2011-07-25
81731290 2014-03-22
85437811 2014-03-22
dahuichen 2019-10-25
ObjectiveC 2011-09-20
80530297 2015-04-14
80530297 2015-04-20