我在InterfaceBuilder中創建的UITableView whoes細胞有一個像它...現在當圖像被裝上的ImageView的UITableView的滾動非常波濤洶涌......這裏是一些代碼uitableview滾動與圖像波濤洶涌?
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"CustomCell" owner:self options:nil];
for (id currentObject in topLevelObjects){
if ([currentObject isKindOfClass:[UITableViewCell class]]){
cell = (CustomCell *) currentObject;
break;
}
}
}
所以現在我能做些什麼來使滾動更少波動?
感謝, TC
什麼其他我可以做,以改善滾動? –