首页 > 代码库 > iOS开发学习之#表视图#(4)填充Grouped风格的分组表
iOS开发学习之#表视图#(4)填充Grouped风格的分组表
直接上代买吧:
@implementation ViewController - (void)viewDidLoad { a = [NSArray arrayWithObjects:@"ant",@"alpaca",@"albatross", nil]; b = [NSArray arrayWithObjects:@"badger",@"bat",@"bear", nil]; c = [NSArray arrayWithObjects:@"cat",@"calf",@"cattle", nil]; d = [NSArray arrayWithObjects:@"A",@"B",@"C", nil]; [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. } //设置表视图的行数 - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 3; } - (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ static NSString *CellIdentifier = @"Cell"; UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier]; } if (indexPath.section == 0) { cell.textLabel.text = [a objectAtIndex:indexPath.row]; } if (indexPath.section == 1) { cell.textLabel.text = [b objectAtIndex:indexPath.row]; } if (indexPath.section == 2) { cell.textLabel.text = [c objectAtIndex:indexPath.row]; } return cell; } //设置表视图的节数 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ return [d count]; } //获取节的名称 - (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{ return [d objectAtIndex:section]; }
iOS开发学习之#表视图#(4)填充Grouped风格的分组表
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。