码迷,mamicode.com
首页 > 移动开发 > 详细

iOS tableview 静态表布局纪录

时间:2016-05-14 18:40:11      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:

今天使用了tableview静态表布局,纪录如下

1:使用tableview 静态表,必须是UITableViewController

2:Content 中选择 Static Cells 如下图

技术分享

3:

//去除尾部多余的空行

    self.tableView.tableFooterView = [[UIView alloc]initWithFrame:CGRectZero];

4:还要去掉以下方法,否则内容显示不出来

 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

#warning Incomplete implementation, return the number of sections

    return 0;

}

 

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

#warning Incomplete implementation, return the number of rows

    return 0;

}

iOS tableview 静态表布局纪录

标签:

原文地址:http://www.cnblogs.com/68tour/p/5492866.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!