gpt4 book ai didi

iphone - 将 subview 添加到 UIButton

转载 作者:IT老高 更新时间:2023-10-28 11:40:18 24 4
gpt4 key购买 nike

我正在尝试将 subview 添加到 UIButton。这现在工作正常。但是一旦我添加了 subview ,该按钮就无法再点击了。

我使用以下代码:

UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(column*100+24, row*80+10, 64, 64);
[button addSubview:asyncImage];
[button addSubview:price];
[button addTarget:self
action:@selector(buttonClicked:)
forControlEvents:UIControlEventTouchUpInside];

如果我剪掉 2 个 addsubviews,该按钮将再次起作用。如果有人知道如何解决这个问题,那就太好了!

THNX!!!

最佳答案

我找到了一个快速的解决方案。我需要将 asyncimageview 设置为以下内容:

asyncImage.userInteractionEnabled = NO;
asyncImage.exclusiveTouch = NO;

在这之后它起作用了!

关于iphone - 将 subview 添加到 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6675233/

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