1
因此,我終於咬住子彈,跳入限制惡夢,將您的筆尖集成到ios7。我設法得到了一些限制,但是我發現了一些帶有自定義圖像的tableviewcell的怪異顯示問題。在這裏看到:UITableViewCell在pre-ios7上無法正確顯示
iOS6的:
ios7:
這裏是我的代碼聲明BG:
+ (UIImage*)yourTurnCell {
if (sYourTurnCell == nil) {
UIImage *i = [UIImage imageNamed:@"YourTurnCell.png"];
sYourTurnCell = i;
}
return sYourTurnCell;
}
我的細胞結構功能中:
self.backgroundView = [[UIImageView alloc] initWithImage:
[GameListCell yourTurnCell]];
self.selectedBackgroundView = [[UIImageView alloc]
initWithImage:[GameListCell yourTurnCell]];
表的寬度決定了在nib文件中完成的行的寬度。
任何人有任何想法如何解決這個問題?一切都是298px寬,但對於ios6的一些未知的原因,我得到的細胞比其他一切都小,即使圖像本身是298px。