我正在使用圖像視圖作爲tableview單元格背景視圖。當我在xcode 4.x中編譯我的源代碼時,它工作正常,即在iOS 6.x和7.0中都能正常工作。但是,當我編譯我的源代碼在Xcode 5.0,背景圖像視圖沒有出現的iOS 7iOS 7 UItableview單元格背景視圖
任何想法,爲什麼它不工作? 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];
}
你是如何設置背景的?顯示您正在使用的實際代碼。 –
我已添加code.Thanks – Techie
[UIImage imageImaged:] imageImaged不是在UIImage類中的任何方法。它的 - imageNamed。請在你的代碼 – iProgrammer