博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS 列表杂记
阅读量:5836 次
发布时间:2019-06-18

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

hot3.png

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath //行点击事件

 NSIndexPath *path = [self.tableView indexPathForSelectedRow]; //获得被选中的indexPath可以得到section,row

[self.tableView reloadRowsAtIndexPaths:[self.tableView indexPathsForSelectedRows] withRowAnimation:UITableViewRowAnimationNone]; //刷新table指定行的数据

tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine; //UITableViewCellSeparatorStyleNone;或者赋值为NO取消分割线

[self.tableView setSeparatorStyle:UITableViewCellSeparatorStyleNone]; //取消分隔线

tableView.separatorColor = [UIColor lightGrayColor];//分隔线颜色

tableView.allowsMultipleSelection = YES;//允许tableView多选

[_tableView setSectionHeaderHeight:kHeaderHeight];

[_tableView setSectionFooterHeight:0];

 [_tableView setRowHeight:50];

self.tableView.backgroundView  优先级高,如果要设置backgroundColor的时候要先把view设置为nil

self.tableView.backgroundColor = [UIColor redColor];

//在tableView的头部或者尾部添加view,footerView宽度是不用设置的

       xxxView.bounds = CGRectMake(0,0,0,height);

    self.tableView.tableFooterView =xxxView;

       self.tableView.tableHeaderView =xxxView;

self.tableView.contentInset = UIEdgeInsetsMake(0, 0, xx, 0); //可偏移位置

[cell setAccessoryType:UITableViewCellAccessoryNone]; //设置右侧箭头

转载于:https://my.oschina.net/u/1466119/blog/359590

你可能感兴趣的文章
Zookeeper
查看>>
MongoDB 创建基础索引、组合索引、唯一索引以及优化
查看>>
百度PaddlePaddle常规赛NLP赛道火热开启
查看>>
稳了!这才是cookie,session与token的真正区别
查看>>
python项目实战:制作一个简易的GUI界面浏览器
查看>>
微信自定义链接分享制作,微信自定义链接配置
查看>>
mysql日期运算,日期函数(转载)
查看>>
如何切换你想要的语言在XMind 6中
查看>>
OSChina 周二乱弹 —— 假期余额已不足!
查看>>
OSChina 周一乱弹 —— 亚洲四大邪术!
查看>>
Google Go web 入门例子
查看>>
log4j 系统jar 冲突整理
查看>>
前端那些事之React篇--helloword
查看>>
swift3.0 常用字符操作 <持续整理>
查看>>
Oracle11g及PL/SQL Developer的安装和配置
查看>>
ios的google解析XML框架GDataXML的配置及使用
查看>>
Ubuntu各类软件推荐
查看>>
关于angular post提交数据接收问题
查看>>
查找两个增序数组中第K大的数
查看>>
java程序员为什么使用Groovy
查看>>