Add a UITableViewCell *customCell property to your view controller (for example, your file ShowUsers.h)...
@property (nonatomic, strong) IBOutlet UITableViewCell *customCell;
and connect it to the custom cell in your xib. Then use the following code in cellForRow (for example, your file ShowUsers.m) :
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"NibName" owner:self options:nil];
cell = self.customCell;
self.customCell = nil;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…