uitableview中没有单元格的部分

时间:2012-03-22 10:52:27

标签: ios ios5 uitableview uiactivityindicatorview

刚看到iOS设置页面中的一个视图,想知道如何创建它,它看起来像一个带有'静态'内容的UITableViewController。如何制作文本部分就像在'twitter'单元格下面一样。在我的应用程序中,我想添加一个“活动指标视图”。但看起来当我在视图中添加更多部分时,会出现一个椭圆形的“单元格”。

enter image description here

1 个答案:

答案 0 :(得分:1)

Twitter单元格下方的这些“文本部分”只是章节页脚。 在TableView的数据源中覆盖此方法:

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
     return @"This is my footer's text!";
}

此外,如果您想将自定义视图作为页脚,请覆盖:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{
    // myFooterView is a custom view. Allocated and initialized
    return myFooteView;
}