我正在使用图像视图作为表格视图单元格背景视图。当我在 xcode 4.x 中编译我的源代码时,它工作正常,即在 iOS 6.x 和 7.0 中它工作正常。但是当我在 xcode 5.0 中编译我的源代码时,背景图像视图没有出现 iOS 7。
任何想法,为什么它不起作用?iOS 7 中的 uitableview 单元格背景视图是否有任何限制?
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:accountProfileTypeCell];
UIImageView *cellBgView =[[UIImageView alloc]init];
[cellBgView setImage:[UIImage imageNamed:@"cellBgView.png"]];
[cell setBackgroundView:cellBgView];
}