gpt4 book ai didi

ios - 作为选项卡的 subview 添加的 UIImageView 允许选择其下的控件

转载 作者:行者123 更新时间:2023-11-29 13:06:47 24 4
gpt4 key购买 nike

在我的应用程序启动时,第一个选项卡被选中,它由一个显示一些信息的 UITableView 组成,但在显示 UITableView 之前,该选项卡显示一个 UIImageView 从其 viewDidLoad 方法中:

viewDidLoad:

    UIImage *image = [UIImage imageNamed:@"splash.png"];
splashImageView = [[UIImageView alloc] initWithImage:image];
splashImageView.frame = CGRectMake(0, 20, 320, 410);
[((UITabBarController*)self.parentViewController.parentViewController).view addSubview:splashImageView];

问题是,当我点击 splashImageView 时,触摸触发了 UITableViewdidSelectRowAtIndexPath: 委托(delegate)方法,尽管它位于splashImageView,为什么我会出现这种行为?

最佳答案

设置 splashImageView.userInteractionEnabled = YES;另外,尝试设置 splashImageView.opaque = YES;

关于ios - 作为选项卡的 subview 添加的 UIImageView 允许选择其下的控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18444157/

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