实现思路:通过代理实现
- 优点:代码简洁,耦合性低,操作灵活(纯代码实现)
实现方法:
- 1:在自定义的cell.h文件中声明代理及协议方法
- 协议名一般为自定义
控间名+Delegate
- 协议中定义方法实现某些功能 如传递一个id或者别的操作
- 协议名一般为自定义
#import <UIKit/UIKit.h>
@protocol ZiLiaoViewCellDelegate <NSObject>
- (void)clickTest:(NSString *)tag;
@end
@interface ZiLiaoViewCell : UITableViewCell
@property(nonatomic,strong)UILabel * nameLable;
@property(nonatomic,strong)UILabel * sexLable;
@property(nonatomic,strong)UILabel * nativeLable;
@property(nonatomic,strong)UILabel * ageLable;
@property(nonatomic,strong)UIButton * testButton;
@property(nonatomic,strong)NSString * ID;
@property (nonatomic, weak) id<ZiLiaoViewCellDelegate> delegate;
-(void)setDataWithDic:(NSMutableDictionary *)dic;
@end
- 2:在cell.m文件中实现
- 用代码创建一个button
_testButton = [[UIButton alloc]initWithFrame:CGRectMake((9*w)/2-15, 5, 30, 30)];
[_testButton setImage:[UIImage imageNamed:@"test_bg"] forState:UIControlStateNormal];
[_testButton addTarget:self action:@selector(click) forControlEvents:UIControlEventTouchUpInside];
[self.contentView addSubview:_testButton];
- 在button的click事件中通过代理方法做事情(这里传递一个id值到控制器也可以将模型数据传递过去)
-(void)click{
if ([self.delegate respondsToSelector:@selector(clickTest:)]) {
[self.delegate clickTest:_ID];
}
}
- 3:在控制器中遵守协议并实现代理方法
- 成功接收到传递过来的id值
#pragma mark
-(void)clickTest:(NSString *)tag{
HDQLog(@"%@",tag);
}
代理实现思路
- 1.拟一份协议(协议名一般是:控间名+delegate),在协议中声明一些代理方法
(@optional)
- 2.声明一个代理属性: @property(nonatomic,
weak
) id<代理协议> delegate - 3.在内部发生某些行为是调用相应的代理方法
- 4.设置代理:xxx.delegate = yyy;
- 5.yyy对象遵守协议实现代理方法。
代理和通知的区别
- 代理:1个对象只能告诉另一个对象发生什么事。
- 通知:1个对象可以告诉N个对象发生什么事。