0

我有一个带有部分的表格视图,每个部分都有自己的数组......我有 13 个部分,每个部分都有不同的主题。在方法中我该怎么做?

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

如何进行切换?

Switch(indexpath.section)
4

1 回答 1

0

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath `

switch (indexPath.section) {

case 0: cell.textLabel.text=@""; break; . . . case n:

//display whatever want break; default: break; } }

于 2013-01-31T08:25:35.427 回答