MCTableView

发布于 2021-12-28 21:53:21 字数 1934 浏览 821 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文