我改變這樣的UITableViewCellStyleSubtitle背景:設置UITableViewCell的自定義背景PNG
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
[...]
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"bgCellNormal" ofType:@"png"];
cell.backgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageWithContentsOfFile:imagePath]] autorelease];
[...]
return cell;
}
我想知道是否有更好的方法來做到這一點,而無需使用這麼多的頁頭和自動釋放? 我的觀點是優化這些uitableview中的內存!
感謝您的幫助!
Kheraud