【发布时间】:2016-11-12 13:41:35
【问题描述】:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
Cell *cell = (ChannelViewTableViewCell *)[tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
NSString *channelName;
channelName= [NSString stringWithFormat:@"Enter Channel %ld Name", (long)indexPath.row+1];
indexPathRow= indexPath.row+1;
return cell;
}
【问题讨论】:
-
告诉我你为什么要在没有它的情况下进行创作?
-
你为什么不想使用出队?那就是优化。如果您遇到问题,可能是因为您做错了什么。解释一下,我们可以提供适当的帮助。
标签: objective-c iphone xcode uitableview