I know i can register a class or NIB file as a UITableViewCell. But I want to do the iOS 6 way of
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier];
How could I achieve this (specifying the cell style) while still using registerClass:ForReuseIdentifier: