欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何给组件UIButton添加事件并传递参数

程序员文章站 2022-07-14 08:54:33
...
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(buttonX, buttonY, width, height)];  
//给button添加点击事件,action参数中写入事件执行方法  
[button addTarget:self action:@selector(action:) forControlEvents:UIControlEventTouchUpInside];  
//在button的tag中添加你需要传递的参数,目前资料中只有这种方法  
//你可以传入任意类型的参数  
[button setTag:100];  
//下面是action方法  
-(void)action:(id)sender{  
//这个sender其实就是UIButton,因此通过sender.tag就可以拿到刚才的参数  
    int i = [sender tag];  
}  

 

相关标签: ios button 事件