2

我想做像下面的图片。

在此处输入图像描述

我该怎么做才能这样使用?

是下面这个方法吗?

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section

谢谢。

4

2 回答 2

7
- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    UIView *footer = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 540, 10)];
    footer.backgroundColor = [UIColor clearColor];

    UILabel *lbl = [[UILabel alloc]initWithFrame:footer.frame];
    lbl.backgroundColor = [UIColor clearColor];
    lbl.text = @"Your Text";
    lbl.textAlignment = NSTextAlignmentCenter;
    [footer addSubview:lbl];

    return footer;
}


- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section {
    return 10.0;
}
于 2013-02-06T08:18:45.857 回答
2

我宁愿把它放进去,viewDidLoad()否则它会产生一种我不喜欢的浮动效果。这是我的快速解决方案

    let footerView = UIView(frame:CGRectMake(0,0,self.view.frame.size.width,30))
    footerView.backgroundColor = UIColor.clearColor()
    let footerLabel = UILabel(frame: footerView.frame)
    footerLabel.textColor = UIColor.flatGrayColor()
    footerLabel.textAlignment = NSTextAlignment.Center
    footerView.addSubview(footerLabel)
    footerLabel.text="\(self.items.count) Items";
    self.tableView.tableFooterView=footerView
于 2016-07-04T03:15:48.637 回答