UITableView-常见设置

UITableView的常见设置

// 分割线颜色
self.tableView.separatorColor = [UIColor redColor];

// 隐藏分割线
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

// tableView有数据的时候才需要分割线
// 开发小技巧:快速取消分割线
 self.tableView.tableFooterView = [[UIView alloc] init];

UITableViewCell的常见设置

// 取消选中的样式(常用) 让当前 cell 按下无反应
cell.selectionStyle = UITableViewCellSelectionStyleNone;

// 设置选中的背景色
UIView *selectedBackgroundView = [[UIView alloc] init];
selectedBackgroundView.backgroundColor = [UIColor redColor];
cell.selectedBackgroundView = selectedBackgroundView;

// 设置默认的背景色
cell.backgroundColor = [UIColor blueColor];

// 设置默认的背景色
UIView *backgroundView = [[UIView alloc] init];
backgroundView.backgroundColor = [UIColor greenColor];
cell.backgroundView = backgroundView;

// backgroundView的优先级 > backgroundColor
// 设置指示器
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.accessoryView = [[UISwitch alloc] init];
时间: 2025-01-15 23:24:06

UITableView-常见设置的相关文章

知识点回顾-tableView展示数据常见设置

如何让tableView展示数据 设置数据源对象 self.tableView.dataSource = self; 数据源对象要遵守协议 @interface ViewController () <UITableViewDataSource> @end 实现数据源方法 // 多少组数据 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; // 每一组有多少行数据 - (NSInteger)tableView:(

iOS常见设置

UILabel设置 @property(nonatomic,copy)NSString *text;//显示文字 @property(nonatomic,retain)UIFont *font;//字体 @property(nonatomic,retain)UIColor *textColor;//文字颜色 @property(nonatomic)NSTextAlignment textAlignment;//对齐模式(左对齐,居中对齐,右对齐) UIFont代表字体,常见的创建方法 +(UIF

iOS 开发笔记-UILable/UIFont/UIButton常见设置

UILabel的常见设置 @property(nonatomic,copy) NSString *text; 显示的文字 @property(nonatomic,retain) UIFont *font; 字体 @property(nonatomic,retain) UIColor *textColor; 文字颜色 @property(nonatomic) NSTextAlignment textAlignment; 对齐模式(比如左对齐.居中对齐.右对齐) UIFont的常见设置 + (UIF

Honeywell1900条码扫描枪常见设置方法

Honeywell1900条码扫描枪常见设置方法 http://www.dzbarcode.com/hynews/h485.htm

gitlab 安装、备份与还原及常见设置

gitlab 安装.备份与还原及常见设置 安装 安装过程比较简单,跑在 docker 上,执行命令即可 -v参数后面的值为卷的名称,自动创建数据卷(如果数据卷不存在) https://docs.gitlab.com/omnibus/docker/ docker run --hostname gitlab.example.com --restart always --name 'gitlab' -d -p 443:443 -p 80:80 -p 22:22 -v gitlab_config:/et

UITableView常见 UI 问题总结

一,经历 1.让 group 形式的UITableView的单元格也可以修改separatorStyle属性来设置. 2.修改group形式的UITableView的 cell 之间的间距,可以更改sectionHeaderHeight属性. 3.可以通过 UITableViewCell 或其contentView的layer 来添加 cell 的边框. 4.让UITableView的allowsSelection属性能让所有 cell 不能被选中. 5.让UITableViewCell的属性的

keras 序贯(Sequential)模型 常见设置

最近看了一些例子,keras在预测方面,Sequential 常见搭配如下 情感分析 embedding -> lstm -> dense embedding 主要用于词的one-hot 编码, lstm 主要用于长距离记忆, dense 是全连接. CTR 预测或者序列预测 lstm -> dense 就足够了, 当然前面可以多个lstm. loss (目标函数)方面 loss='mean_squared_error' (均方误差), 或者 loss='mae'(绝对值均差) 两者选择

UITableView&amp;UICollectionView设置单元格的默认选中状态

1. 场景需求 一个表格视图(或者宫格视图)中,当一个单元格被选中时设置彩色样式,选中其它单元格时设置灰色样式. 2. 一个思路 通过实现选中和非选择的代理,以在适当的时机进行UI更新操作. 3. UITableView 3.1 通过屏幕点击改变的选中状态回调给代理 //选中-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath;//非选中-(void)tableView:(

linux显示器常见设置

1. 设置系统默认的分辨率 xrandr  命令: > xrandr Screen 0: minimum 1 x 1, current 1920 x 1080, maximum 8192 x 8192Virtual1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 0mm x 0mm1   1920x1080      60.0*+2   2560x1600      60.0  3   192

海康威视网络监控摄像头常见设置-工作随笔

昨天Boss就和我说,有个客户要装一个网络监控,问我会不会,是海康威视的,要实现手机远程观看和电脑本地存储,我说会,之前都有做过,让我有空时在店里测试一下,这个不急!于是我把摄像机连上网络,在海康威视官网下载IVMS-4200软件,海康威视摄像机的默认IP是192.0.0.64,用户名admin,密码12345,把摄像机的IP修改和路由器同一网段,如路由器是192.168.1.1,摄像头修改为192.168.1.XXX,修改和添加设备时都有输入密码,有的还要输入用户名,密码输入正确才能修改和添加