我知道我可以将类或 NIB 文件注册为 UITableViewCell。但我想做iOS 6的方式
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
我怎么能在仍然使用的同时实现这一点(指定单元格样式)registerClass:ForReuseIdentifier: