11
我有一個自定義UITableViewCell
,我使用的是這樣的:覆蓋了自定義的UITableViewCell
AppTableCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"AppTableCell" owner:self options:nil];
for(id currentObject in topLevelObjects) {
if([currentObject isKindOfClass:[AppTableCell class]]) {
cell = (AppTableCell *)currentObject;
break;
}
}
}
完美的作品。但是,我想在創建單元時爲單元格做一些自定義的事情。通常我會覆蓋像initWithFrame
,但它沒有在這裏使用。我應該重寫什麼方法來自定義初始化?
如果對象使用插座或操作,因爲它沒有連接 – Victor