美文网首页
UITableView系列

UITableView系列

作者: SYOL | 来源:发表于2016-05-01 00:12 被阅读21次

    一、
    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系列

          本文链接:https://www.haomeiwen.com/subject/txbkrttx.html