博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UITableView 基本使用[二] 基本属性
阅读量:6281 次
发布时间:2019-06-22

本文共 1004 字,大约阅读时间需要 3 分钟。

// 设置表视图的颜色   _tableView.backgroundColor = [UIColor yellowColor];    // 设置表视图的分割线的颜色//    _tableView.separatorColor = [UIColor purpleColor];    // 设置表视图的分割线的风格 _tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;    // 设置表视图的头部视图(headView 添加子视图)UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 80)]; headerView.backgroundColor = [UIColor redColor]    // 添加子视图    UILabel *headText = [[UILabel alloc] initWithFrame:CGRectMake(60, 0, 200, 80)];    headText.text = @"天晴朗,天晴朗天晴朗天晴朗!";    // 是否自动换行 0 换行,1 自动缩略    headText.numberOfLines = 0;    [headerView addSubview:headText];    [headText release];        _tableView.tableHeaderView = headerView;    [headerView release];        // 设置表视图的尾部视图(footerView 添加子视图)        UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 80)];    footerView.backgroundColor = [UIColor yellowColor];    _tableView.tableFooterView = footerView;    [footerView release];

转载于:https://my.oschina.net/wangdk/blog/150291

你可能感兴趣的文章
/etc/fstab,/etc/mtab,和 /proc/mounts
查看>>
Apache kafka 简介
查看>>
socket通信Demo
查看>>
技术人员的焦虑
查看>>
js 判断整数
查看>>
建设网站应该考虑哪些因素
查看>>
mongodb $exists
查看>>
js实现页面跳转的几种方式
查看>>
sbt笔记一 hello-sbt
查看>>
常用链接
查看>>
pitfall override private method
查看>>
!important 和 * ----hack
查看>>
聊天界面图文混排
查看>>
控件的拖动
查看>>
svn eclipse unable to load default svn client的解决办法
查看>>
Android.mk 文件语法详解
查看>>
QT liunx 工具下载
查看>>
内核源码树
查看>>
Java 5 特性 Instrumentation 实践
查看>>
AppScan使用
查看>>