- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
staticNSString *CellIdentifier =@"Cell";[self.tableView registerClass:[UITableViewCellclass] forCellReuseIdentifier:CellIdentifier];UITableViewCell*cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];if(cell ==nil)
{
cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
cell.selectionStyle=UITableViewCellSelectionStyleNone;
}//config cell...
returncell;
}
主要是加入了这句话解决
[self.tableView registerClass:[UITableViewCellclass] forCellReuseIdentifier:CellIdentifier];