首页 > 其他 > 详细

UITableView隐藏多佘部分方法

时间:2015-03-11 11:01:15      阅读:280      评论:0      收藏:0      [点我收藏+]

 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];


UITableView隐藏多佘部分方法

原文:http://my.oschina.net/jilin/blog/385111

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!