美文网首页
UITableView 相关博客合集

UITableView 相关博客合集

作者: 丨不學無術丨 | 来源:发表于2017-04-21 14:12 被阅读9次

iOS开发中UITableView和UITableViewCell的几种样式

http://blog.csdn.net/crazyzhang1990/article/details/12503163

系统自己的UITableViewCell样式有四种

UITableViewCellStyleValue1

image.png

UITableViewCellStyleValue2

image.png

UITableViewCellStyleSubtitle

image.png

UITableViewCellStyleDefault

image.png

一句话增加系统自带的右侧小箭头

cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

TableView适配iOS 11

if (@available(iOS 11.0, *)) {
        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        self.automaticallyAdjustsScrollViewInsets = false;
    }

TableView 不显示多余的footview

self.tableView.tableFooterView = [UIView new];

相关文章

网友评论

      本文标题:UITableView 相关博客合集

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