ビューに 2 つの UITableView を実装しようとしています。両方のテーブルには異なるカスタム セルがあります (テーブル 1 には customcell 1 があり、テーブル 2 には customcell テーブルがあります。
私の cellForRowAtIndexPath はそれを処理しません
if (tableView == self.firstTableView)
{
static NSString *CellIdentifier.....
return cell;
}
else if (tableView == self.secondTableView)
{
tatic NSString *CellIdentifier.....
return cell;
}
どうすれば問題を処理できますか?
どうも