ios 代理设计模式的实现步骤

1首先创建代理协议

@protocolMore

- (void) MoreView;

@end

2之后在需要调用的地方创建代理属性

@property(nonatomic,strong)idMoreButton;

3在想要执行代理通知的类里遵守代理协议

@interfaceHomeController :UIViewController

4在执行的类里 通过代理属性将代理设置为自己

self.HomeBar.MoreButton=self;

5.执行方法

- (void) MoreView{

NSLog(@"我是执行的代理方法!");

}

你可能感兴趣的:(ios 代理设计模式的实现步骤)