ここにいくつかのコード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;
}
}
}
がある...イメージがImageViewの上にロードされたときに、今のUITableViewのスクロールが非常に途切れている...私はのUITableView whoes細胞がinterfacebuilderに作成されており、画像がそれであり今はスクロールを不安定にするために何ができるのですか?
おかげで、 TC
スクロールを改善するために何かできますか? –