码迷,mamicode.com
首页 > 其他好文 > 详细

最精简 代理代码

时间:2015-01-25 19:39:39      阅读:335      评论:0      收藏:0      [点我收藏+]

标签:

@protocol XieYi <NSObject>

//1, 定义

- (void)star;

@end

@interface Shixian : NSObject <XieYi>

@end

@implementation Shixian

//4, 实现

- (void)star

{    

    NSLog(@" 这是 协议方法的 实现");

}

@end

@interface ShiYong : NSObject

//2, 设置属性

@property (nonatomic,assign) id <XieYi> delegate;

- (void)crying;

@end

@implementation ShiYong

//3 发起使用

- (void)crying

{   //3, 使用

    [self.delegate star];

}

- (void)dealloc

{

    self.delegate = nil;

    [super dealloc];

}

@end

 

int main(int argc, const char * argv[]){

    @autoreleasepool {

        Shixian *shixian = [Shixian new];

        ShiYong *shiyong = [ShiYong new];

        //5,设置代理

        shiyong.delegate = shixian;

        //6,

        [shiyong crying];

    }

    return 0;

}

 

最精简 代理代码

标签:

原文地址:http://www.cnblogs.com/iOS-mt/p/4248652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!