代理的另一种实现方式

作者:Love@YR
链接:http://blog.csdn.net/jingqiu880905/article/details/52461820
请尊重原创,谢谢!

代理相信大家都很熟悉了。不过还是说下吧。
举个例子:

//
//  A.h
//  Created by XX 
//

@protocol SomeDelegate <NSObject>
- (void)someMethod:(UIViewController *)vc;
//and other methods....
@end

@interface A:NSObject 
@property (nonatomic,weak) id <SomeDelegate> sdelegate;
@end
//
//  A.m
//  Created by XX 
//

#import "A.h"
@implementation A

-(void)Method2{
if (self.sdelegate && [self.sdelegate respondsToSelector:@selector(someMethod:)]) {
     [self.sdelegate someMethod:someParam];//如果someMethod没引用 可以用performSelector
    }
}
@end
//
//  B.h
//  Created by XX 
//

@interface B:UIViewController<SomeDelegate>
@end

//
//  B.m
//  Created by XX 
//

@implementation B
-(void)Method1{
A *a =[[A alloc]init];
a.sdelegate = self;
}

#pragma mark -SomeDelegate
 - (void)someMethod:(UIViewController *)vc{
 //do something.....
 }
@end

现在我在A中加入一个方法newAwithController

+ (instancetype)newAwithController:(UIViewController *)controller{
    A *a = [[self alloc]init];
        if ([controller conformsToProtocol: @protocol(SomeDelegate)]) {
        a.sdelegate = (UIViewController<SomeDelegate> *)controller;
    }
return a;
}

这样的话所有需要实现协议的类里如B类都不必再写Method方法里那两句了。而是在newA的时候,直接self.a=[A newAwithController:self]即可。

第二种实现方式适合会有很多个有共同基类的类需要实现同一代理的情况。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值