在tableview下添加按钮

时间:2009-07-24 15:40:11

标签: objective-c uitableview uiview uiscrollview

我正在尝试以编程方式创建视图。我想要的结果是一个滚动视图,里面有一个tableview。在这个表视图下我想添加一些按钮

我不知道该怎么做,我试过这个,但它不起作用:

- (void)loadView {
    [super loadView];

    tableView = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
    [tableView setDelegate:self];
    [tableView setDataSource:self];

    scrollView = [[UIScrollView alloc] initWithFrame:[[self view] bounds]];
    //[scrollView setBackgroundColor:[UIColor blackColor]];
    [scrollView setBouncesZoom:YES];

    deconnectButton = [[UIButton buttonWithType:UIButtonTypeRoundedRect] retain];
    [deconnectButton setTitle:@"Deconect" forState:UIControlStateNormal];
    [deconnectButton setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];

    //[deconnectButton addTarget:self action:action forControlEvents:UIControlEventTouchUpInside]; 
    deconnectButton.frame = tableView.frame;
    NSLog(@"Tableview frame : %@", NSStringFromCGRect(tableView.frame));

    [scrollView addSubview:deconnectButton];

    [scrollView addSubview:tableView];


    [[self view] addSubview:scrollView];


}

我错过了什么或做错了什么?

3 个答案:

答案 0 :(得分:16)

实际上我找到了解决方案。 tableview有一个名为tableFooterView的属性。您所要做的就是:

创建一个UIView - 在此视图中添加一个按钮 - 最后将它设置在tableFooterView

以下是代码:

tableView = [[UITableView alloc] initWithFrame:[[self view] bounds] style:UITableViewStyleGrouped];
[tableView setDelegate:self];
[tableView setDataSource:self];

// create a UIButton (Deconnect button)
UIButton *btnDeco = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btnDeco.frame = CGRectMake(0, 0, 280, 40);
[btnDeco setTitle:@"Déconnecter" forState:UIControlStateNormal];
btnDeco.backgroundColor = [UIColor clearColor];
[btnDeco setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];
[btnDeco addTarget:self action:@selector(deconnect:) forControlEvents:UIControlEventTouchUpInside];

// create a UIButton (Change pseudo button)
UIButton *btnChange = [UIButton buttonWithType:UIButtonTypeRoundedRect];
btnChange.frame = CGRectMake(0, 50, 280, 40);
[btnChange setTitle:@"Changer Pseudo" forState:UIControlStateNormal];
btnChange.backgroundColor = [UIColor clearColor];
[btnChange setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];
[btnChange addTarget:self action:@selector(changePseudo:) forControlEvents:UIControlEventTouchUpInside];


//create a footer view on the bottom of the tabeview
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(20, 0, 280, 100)];
[footerView addSubview:btnDeco];
[footerView addSubview:btnChange];

tableView.tableFooterView = footerView; 
[footerView release];

[[self view] addSubview:tableView];

答案 1 :(得分:2)

需要注意的一点是,UITableView是UIScrollView的子类,因此您可能需要以不同的方式管理UITableView的大小,而不是让它进行滚动。

您的代码似乎是将tableView和deconnectButton设置为相同的大小,并且该大小是scrollView superview的大小。我希望这会影响tableView隐藏按钮。

根据您的描述,您应该根据其内容计算表的大小,然后相应地设置其框架。然后将按钮的框架设置在其下方。此外,您还需要使用其contentSize属性设置scrollView的大小。这种情况下的问题是你必须始终保持scrollView的大小和按钮的位置与tableView的大小同步。

您可以调查将表格中的最后一行设为按钮并消除外部滚动视图。最终可能导致代码减少。

答案 2 :(得分:1)

如果你在UINavigationController中有UITableView,你可以在UITableViewController / UIViewController的底部设置工具栏项。

UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:nil action:nil];
self.toolbarItems = @[barButton];

请记得像这样显示工具栏:

self.navigationController.toolbarHidden = NO;

//or animated
[self.navigationController setToolbarHidden:NO animated:YES];

这可能比在桌子下方查看视图更清晰。