我必须创建一个包含多个按钮的单元格。这里的tableview是可展开和折叠的,节数和节中的行数是动态的。
我想要以这种方式完成任务
也就是说,在每一行中,我只想要 4 个任务 n 剩余任务将显示在下一行。但我的问题是,如果我只有 13 个任务而不是它包含 4 行,那么在第 1 行和第 2 行和第 3 行它包含 4 个任务,在最后一行它只包含 1 个任务,但我无法做到这一点,它的文本也不会按照任务。
这是我的代码。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if ([self tableView:tableView canCollapseSection:section])
{
if ([expandedSections containsIndex:section])
{
objePro = [appDelegate.array_proj objectAtIndex:section];
rowcount = [objePro.arr_task count] + 1;
NSLog(@"rowcount %d",rowcount);
if (rowcount < 4)
return 2;
else
{
if (rowcount % 4)
{
NSLog(@"odd: %d",rowcount/4 + 2);
return rowcount/4 + 2;
}
else
{
NSLog(@"even: %d",rowcount/4);
return rowcount/4;
}
}
}
}
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] ;
}
cell.backgroundColor = [UIColor clearColor];
if ([self tableView:tableView canCollapseSection:indexPath.section])
{
if (!indexPath.row)
{
cell.textLabel.textColor = [UIColor whiteColor];
UIImageView *backgroundView = [[UIImageView alloc] initWithFrame:CGRectZero];
cell.backgroundView = backgroundView;
backgroundView.image = [UIImage imageNamed:@"prjctcell_bg.png"];
objePro = [appDelegate.array_proj objectAtIndex:indexPath.section];
cell.textLabel.text = objePro.projctname;
if ([expandedSections containsIndex:indexPath.section])
cell.accessoryView = [DTCustomColoredAccessory accessoryWithColor:[UIColor blackColor] type:DTCustomColoredAccessoryTypeUp];
else
cell.accessoryView = [DTCustomColoredAccessory accessoryWithColor:[UIColor blackColor] type:DTCustomColoredAccessoryTypeDown];
}
else
{
// all other rows
cell.accessoryView = nil;
j=4;
for (k = 0; k<4; k++)
{
NSLog(@"k %d",k);
btnexpand = [[UIButton alloc] init];
btnexpand = [UIButton buttonWithType:UIButtonTypeCustom];
btnexpand.frame = CGRectMake(j, 5, 80, 40);
btnexpand.backgroundColor = [UIColor clearColor];
[btnexpand setTitleColor:[UIColor colorWithRed:53.0/255 green:53.0/255 blue:53.0/255 alpha:1.0] forState:UIControlStateNormal];
btnexpand.titleLabel.font = [UIFont boldSystemFontOfSize:14];
[btnexpand setTitle:[NSString stringWithFormat:@"Step %d",[[[[appDelegate.array_proj objectAtIndex:indexPath.section] arr_task] objectAtIndex:indexPath.row - 1] taskid]] forState:UIControlStateNormal];
NSLog(@"btn title: %@",btnexpand.titleLabel.text);
[btnexpand setBackgroundImage:[UIImage imageNamed:@"greenarrow.png"] forState:UIControlStateNormal];
[cell.contentView addSubview:btnexpand];
j= j+65;
}
}
}
return cell;
}
请帮我。