3. カスタムセル作りづらい • UITableViewControllerが勝手にCellを作る • しかもキャッシュして使いまわす - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath]; // いろいろ処理 return cell; } 13年9月2日月曜日
