UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"FirstScreen.png"]];
imageView.frame = CGRectMake(0.0,0.0,[GeneralUtils screenWidth],[GeneralUtils screenHeight]);
// !!!!!!!!!!!!!
[self.view addSubview: imageView];
[self.view sendSubviewToBack:imageView];
[self.view sendSubviewToBack:self.tableView];
一切都很好......但现在在ios6中,我的UIImageView不再显示了......
答案 0 :(得分:1)
尝试下面的代码..
CGRect screenBounds = [[UIScreen mainScreen] bounds];
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"FirstScreen.png"]];
imageView.frame = screenBounds;
[self.view addSubview:imageView];
[self.view bringSubviewToFront:self.tableView];
[self.tableView setBackgroundColor:[UIColor clearColor]];
答案 1 :(得分:0)
通过设置
解决了这个问题[self.tableView setBackgroundView: nil];
我认为我的tableView隐藏了Image!