gpt4 book ai didi

ios - 无法在自定义 UIView 上单击 UIButton

转载 作者:行者123 更新时间:2023-11-28 19:03:34 24 4
gpt4 key购买 nike

我有一个自定义 View ,例如 ParentView : UIView。在此 View 中,我有一个 UIButton,我以编程方式将其添加为

UIButton *btn = [[UIButton alloc] initWithFrame:frame];
[btn addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpOutside];
[self addSubview:btn];

和 Action :

-(void)buttonPressed:(id)sender{
NSLog(@"button pressed: %@",sender);
}

在我的 Storyboard中,我有一个基本 View ,我已将其类设置为 ParentView。确实调用了初始化,并且 UIButton 创建良好,只是没有调用操作。 ParentView 已检查 userInterActionEnabled

最佳答案

使用 UIControlEventTouchUpInside 事件而不是 UIControlEventTouchUpOutside。

关于ios - 无法在自定义 UIView 上单击 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22643548/

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