gpt4 book ai didi

ios - 在没有 IBOutlet 的情况下将 IBAction 与 UIButton 一起使用

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:24:13 24 4
gpt4 key购买 nike

抱歉标题不清楚。我希望能够将 IBAction 方法添加到按以下方式添加的按钮:

(.h类)

{
UIButton *button;
}
-(IBAction)ButtonReleased:(id)sender

(.m类)

{
-(IBAction)ButtonReleased:(id)sender
{
//Actions done by button pointer
}

- (void)viewDidLoad
{
[super viewDidLoad];
[PlayButton setFrame:CGRectMake(10, 10, 100, 50)];
[PlayButton setTitle:@"PlayButton" forState:UIControlStateNormal];
[self.view addSubview:PlayButton];
}
}

问题是,如何将 UIButton 按钮操作(例如 TouchUpInside)连接到 ButtonReleased 方法。

最佳答案

[button addTarget:self action:@selector(ButtonReleased:) forControlEvents:UIControlEventTouchUpInside];

关于ios - 在没有 IBOutlet 的情况下将 IBAction 与 UIButton 一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7641509/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com