混编
pragma mark - UITableViewDelegate
必须写下面的代理,否则你会崩溃
//表示cell的内容缩进
- (NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
//表示动态cell在section 为 1 静态cell的section 0
if (indexPath.section == 2) {
return self.selectedItemMArr.count + 1;
}
return indexPath.row;
}