在Grouped tableView中添加按钮

时间:2011-12-19 18:08:13

标签: iphone objective-c

我有一个Grouped Table View,就像one shown in this image一样。我需要做的是在2组之间添加一个按钮,这可能吗?如果是这样我怎么能编码呢?

2 个答案:

答案 0 :(得分:5)

是的,您可以在视图控制器中实现一个表委托方法,即:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
   if (section == 0) {
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        [button setTitle:@"Hello" forState:UIControlStateNormal];
        // other initialization here...
        return button;
    }
    return nil;
}

答案 1 :(得分:1)

您可以为表格使用自定义标题视图,并在此处放置一个按钮,使您的自定义视图仅用于2个及更高版本的部分。