我尝试在我的视图上实现 2 个 UITableViews。两个表都有不同的自定义单元格(表一有自定义单元格一,表二有自定义单元格表。
我的 cellForRowAtIndexPath 不处理它
if (tableView == self.firstTableView)
{
static NSString *CellIdentifier.....
return cell;
}
else if (tableView == self.secondTableView)
{
tatic NSString *CellIdentifier.....
return cell;
}
我该如何处理我的问题?
谢谢