1
將一些視圖放在一個nib文件中是否更好?在一個文件中使用多個nib文件是否會影響性能?
cellForRowAtIndexPath_method:
....
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle]
loadNibNamed:@"MyCell"
owner:nil options:nil];
for (id currObject in topLevelObjects) {
if ([currObject isKindOfClass:[MyCell class]]
&& [[currObject reuseIdentifier] isEqualToString:MyCellIdentifier]) {
cell = (MyCell *) currObject;
}
}
}
.....
我有幾個細胞 - MyCells.xib:
感謝,瑞舍夫