iOS设置代理的过程 (以模拟 button 作用为例)
1.写协议
新建一个名为 MyButton 的文件,继承于 UIView,在该文件里 声明协议 myDelegate
2.写协议方法
为声明的协议添加方法
3.定义一个遵守协议的属性
前三步代码如下:
#import <UIKit/UIKit.h>
@class MyButton;
//第一步:写协议
@protocol myDelegate <NSObject>
//第二步:写协议方法 (参数要在上面声明:@class MyButton;)
- (void)changeColor:(MyButton *) myButton;
@end @interface MyButton : UIView
//第三步:写一个myDelegate属性
@property (nonatomic , assign)id<myDelegate> delegate; @end
4.写一个调用协议的方法
写touchesBegan 方法
5.调用协议方法
4,5步代码:
//第四步 写touchesBegan 方法
- (void)touchesBegan:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event{
//第五步调用协议的方法
[_delegate changeColor:self];
}
6.遵守协议
让要实现协议的类遵守协议
//第六步 遵循协议 @interface RootViewController : UIViewController <myDelegate>
7.设置代理
self.rootView.myButton.delegate = self;
8.实现协议方法
//第八步 实现协议中的方法
- (void)changeColor:(MyButton *)myButton{
myButton.backgroundColor = [UIColor colorWithRed:arc4random()%/255.0 green:arc4random()%/255.0 blue:arc4random()%/255.0 alpha:];
}