Tag Archives: UITableViewController

UITableViewController中,如何消除底部多余分割线

如下图所示:

1465798518-5964-cFbz5

可以参考 链接

总体来说,添加一个footerview是最简单的方式。

有多种方法做这个事情,比如:
- (void) viewDidLoad
{
[super viewDidLoad];

// Without ARC
//self.tableView.tableFooterView = [[[UIView alloc] init] autorelease];

// With ARC, tried on Xcode 5[......]

继续阅读