标签: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
标签:des 使用 io ar cti table ui view
原文地址:http://www.cnblogs.com/vimbin/p/3894251.html