码迷,mamicode.com
首页 > 其他好文 > 详细

UITableview 使用的小知识点

时间:2014-08-06 14:26:01      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:des   使用   io   ar   cti   table   ui   view   

1.同一个section中 cell 之间 分割线 到屏幕 的距离 是可调的。

    _tableview.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);  即可

 

2.点击cell进入下一个vc,返回时,cell仍然是选中状态,去掉这种选择状态

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

   ......

}

即可。

UITableview 使用的小知识点,布布扣,bubuko.com

UITableview 使用的小知识点

标签:des   使用   io   ar   cti   table   ui   view   

原文地址:http://www.cnblogs.com/vimbin/p/3894251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!