在我的应用程序启动时,第一个选项卡被选中,它包含一个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
,触摸正在触发虽然它在 下的didSelectRowAtIndexPath:
委托方法,那么为什么我会得到这种行为?UITableView
splashImageView