- 开发中经常会遇到执行Button的点击事件,需要传入一个参数,而苹果自带的方法只能传递Button本身
所以我们可以通过别的方法来变相的传递参数:
比如:自定义Button,给Button附加一个属性:
@interface WLKButton : UIButton
@property (nonatomic, strong) id info;
@end
在初始化自定义Button的时候:
WLKButton *button = [WLKButton alloc] init];
button.info = 要传的数据