MCTableView
MCtableView *tableView = [MCtableView mcDefaultMCTableViewVC:self CGFrame:CGRectMake(0, 64, self.view.bounds.size.width, self.view.bounds.size.height - 64) TableViewStyle:UITableViewStyleGrouped];
NSArray *pls = @[@"请输入01",@"请输入03",@"请输入03",@"请输入03"];
// tableView.mcDataSource(0,pls.count).mcDataSource(1,3);
for (int i = 0; i < 2; i ++){
MCtCell * cell = [[[NSBundle mainBundle]loadNibNamed:@"Order" owner:self options:nil]objectAtIndex:0];
cell.title.text = @"区头";
MCtCell * cell1 = [[[NSBundle mainBundle]loadNibNamed:@"MCtableView" owner:self options:nil]objectAtIndex:2];
cell1.contentView.backgroundColor = [UIColor yellowColor];
cell1.title.text = @"就是这样";
tableView.mcHeader(i,80,YES,cell).mcFooter(i,60,YES,cell1);
}
tableView.mcRemoveFooter(1);
[tableView.mcDataSource(0,pls.count).mcDataSource(1,10) mcReturnCellIndexPath:^(NSIndexPath *indexPath, MCtCell *cell){
NSLog(@"%ld,%ld",(long)indexPath.section,(long)indexPath.row);
cell = [[[NSBundle mainBundle]loadNibNamed:@"MCtableView" owner:self options:nil]objectAtIndex:2];
if (indexPath.row < pls.count) {
cell.title.text = pls[indexPath.row];
}
tableView.mcSetShowCell(indexPath,cell);
} SelendIndexPath:^(UIButton *button,NSInteger mcTag,NSIndexPath *indexPath,id data){
NSLog(@"%ld,%ld",indexPath.section,indexPath.row);
}];
//注:可以自定义区头、ItemCell和设置
下载地址:http://www.wenjiangs.com/wp-content/uploads/2021/docimg35/1cf721b5791e9968098118884ac2ae92.zip
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论