ios开发,请把tableView的group用完整的代码写出来,在线等,谢谢
展开全部
主要是在组织数据结构上。数据源用一个NSDictionary 就可以解决问题。
NSDictionary *dict=@{@"section1": @[@"薪酬查询",@"求职指导"], @"Section2" : @[@“消息管理”] , @"Section3":@[@"精彩活动",@"应用推荐"] }; //其它的就省略了
//取section的数量
int sectionCount=[[dict allKeys] count];
//根据section Index 取sectionKey ,再根据Key得到 key下的value
NSString *key=[[dict allKeys] objectAtIndex: index]; //根据sectiion index得到key
NSArray *rows=(NSArray *)[dict objectForKey:key]; //根据key取key对应的value;
在-(NSInteger)numberOfsectionsInTableView中返回上面得到的sectionCount
在-(NSInteger) tableView:(UITableview *) numberOfRowsInSection 返回上面得到的[rows count]
NSDictionary *dict=@{@"section1": @[@"薪酬查询",@"求职指导"], @"Section2" : @[@“消息管理”] , @"Section3":@[@"精彩活动",@"应用推荐"] }; //其它的就省略了
//取section的数量
int sectionCount=[[dict allKeys] count];
//根据section Index 取sectionKey ,再根据Key得到 key下的value
NSString *key=[[dict allKeys] objectAtIndex: index]; //根据sectiion index得到key
NSArray *rows=(NSArray *)[dict objectForKey:key]; //根据key取key对应的value;
在-(NSInteger)numberOfsectionsInTableView中返回上面得到的sectionCount
在-(NSInteger) tableView:(UITableview *) numberOfRowsInSection 返回上面得到的[rows count]
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询