我是iPhone技术的新手,请任何人告诉我如何为UIButton添加动作。
UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btn.frame = CGRectMake(0, 0, 100, 25);
btn.backgroundColor = [UIColor clearColor];
[btn setTitle:@"Play" forState:UIControlStateNormal];
[btn addTarget:self action:(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
btn.center = self.center;
[self addSubview:btn];
7条答案
按热度按时间a8jjtwal1#
使用此
0ejtzxu12#
使用 @selector() 指定选择器。因此,action 参数如下所示:
hgc7kmma3#
银行代码:
ohtdti5x4#
像这样使用
并添加选择器方法
fumotvh35#
hmae6n7t6#
1.使用
@objc
创建函数1.将函数作为目标添加到
UIButton
。如下所示:qvsjd97n7#
从Ios14开始,您可以使用UIAction代替addTarget: