如果我有一个 UITableView 它有[arrayofStudents count]
部分:
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [arrayofStudents count]
}
然后我想为每个部分制作一个标题(注意部分的数量与arrayofStudent的大小有关)
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
switch (section) {
case //if it is the first section :
return [arrayofStudents objectAtIndex:0];
break;
case //if it is the second section:
return [arrayofStudents objectAtIndex:1];
break;
//case until arrive to the count of arrayofStudents
default:
break;
}
case语句的数量与arrayofStudents的数量有关,如果我在arrayofStudents中有10个元素,那么我将有10个部分。如何在 switch case 语句中构建它?
谢谢您的帮助。