UIButton *btn2 = [[UIButton alloc] initWithFrame:CGRectMake(0, 38, 100, 38)];
[btn2 setTitle:@"添加好友" forState:UIControlStateNormal]; btn2.titleLabel.font = [UIFont systemFontOfSize:16];
[btn2 addTarget:self action:@selector(btn2Click:) forControlEvents:UIControlEventTouchDown];
之前可以触发, 现在不知是何原因不能触发了?
ringa_lee2017-04-17 14:26:40
Change first
[btn2 addTarget:self action:@selector(btn2Click:) forControlEvents:UIControlEventTouchUpInside];
If this still doesn’t work, check the properties of the parent view User Interaction Enabled, or check the btn2Click: method
伊谢尔伦2017-04-17 14:26:40
Change to the following code and try again
UIButton *btn2 = [[UIButton alloc] initWithFrame:CGRectMake(0, 38, 100, 38)];
[btn2 setTitle:@"添加好友" forState:UIControlStateNormal]; btn2.titleLabel.font = [UIFont systemFontOfSize:16];
[btn2 addTarget:self action:@selector(btn2Click:) forControlEvents:UIControlEventTouchUpInside];
天蓬老师2017-04-17 14:26:40
Trouble changing the enumeration of forControlEvents
to: UIControlEventTouchUpInside
In addition, button has intrinsicSize. Are you clicking within this range