-2
私は、下の2つの賛否両論を理解しようとしています。どちらもうまく動作します。UITableViewCellカスタマイズ
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
{
UITableViewCell *tableViewCell = nil;
MyChildUITableViewCell *childTableViewCell =
(MyChildUITableViewCell*)[tableView dequeueReusableCellWithIdentifier:@"MyChildUITableViewCell"];
tableViewCell = childTableViewCell;
return tableViewCell;
}
OR
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
MyChildUITableViewCell *childTableViewCell = nil;
childTableViewCell = (MyChildUITableViewCell*)
[tableView dequeueReusableCellWithIdentifier:@"MyChildUITableViewCell"];
return childTableViewCell;
}
タイトルはコードと何が関係していますか? – Shubhank