标签:
UITableView *tableView = [[UITableView alloc]initWithFrame:self.view.bounds style:UITableViewStylePlain];
tableView.delegate = self;
tableView.dataSource = self;
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
[self.view addSubview:tableView];
//隐藏tableView多佘的部分
UIView *view = [UIView new];
view.backgroundColor = [UIColor clearColor];
[tableView setTableFooterView:view];
标签:
原文地址:http://my.oschina.net/jilin/blog/385111