我注意到在某些应用程序中,例如联系人应用程序,分组表视图底部有一个或多个按钮。我想知道这些按钮是否是 UITableView 的一部分,就像按钮在 UITableViewCell 中一样,或者它是否是一个 UIView,其中有一个位于 UITableView 下方的按钮。我还想知道这两种方法是否比另一种更好。我想向我的 UITableView 添加一些按钮,类似于联系人应用程序,但不知道更好的方法是什么。谢谢!
问问题
62 次
2 回答
0
UITableView
has two relevant properties, tableHeaderView
and tableFooterView
. All you have to do to replicate what you're seeing in Contacts is connect the property to a custom UIView
that contains a UIButton
as a subview.
于 2012-07-30T03:35:32.310 回答
0
I did similar things about add UIButtons to UITableView.
You can add the button as a part in the UITableViewCell, or, you can make a custom view as the footer view
of UITableView.
于 2012-07-30T03:37:16.190 回答