UITableView系列

一、
1、下划线相关的属性
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;//隐藏所以下划线
self.tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLineEtched;//隐藏有数据的下划线,其他没有数据不会隐藏

2、改变高度方法
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath//UITableViewCell的高度
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section//改变headView的高度
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section//改变footerView 的高度。

3、代理方法
//返回有多少个Sections
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section//section有多少个元素,也就是多少行。
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

  刚刚新建了一个分享交流群,366270001,期待你们的加入。

待续。。。

你可能感兴趣的:(UITableView系列)