UITableView自定义cell时
- 若使用nib,使用 registerNib: 注册,dequeue时会调用 cell 的 -(void)awakeFromNib
- 不使用nib,使用 registerClass: 注册, dequeue时会调用 cell 的 - (id)initWithStyle:withReuseableCellIdentifier:
UICollectionView自定义cell时
- 若使用nib,使用registerNib:注册,dequeue时会调用 cell的 -(void)awakeFromNib
- 不使用nib,使用 registerClass: 注册, dequeue时会调用 cell 的 - (id)initWithFrame:
若不适使用registerClass注册,则根据自己创建cell时写的[cell alloc] init...之类来调用