Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 UITableView 并且正在以编程方式向它添加新行。我如何为每一行编号?有没有故事情节选项?
任何帮助将不胜感激,谢谢。
没有“故事板选项”来对行进行编号,假设您的意思是您希望行在屏幕上显示它们的行号。
在tableView:cellForRowAtIndexPath:中,您需要将标签的文本设置为包含单元格的行号。例如:
tableView:cellForRowAtIndexPath:
cell.textLabel.text = [NSString stringWithFormat:@"Row %d", indexPath.row];
如果您不理解那行代码,或者不知道将其放在哪里,则需要在继续之前完成一些表格视图教程。