UITableView细节.txt

来源:互联网 发布:大纲写作软件 编辑:程序博客网 时间:2024/05/22 14:06
UITableView细节.txt


1)当xib使用了自动布局,控件的frame调整便不生效。如此,要么取消自动布局;要么手写代码;


2)当xib使用了自动布局,cell.accessorytype不生效。取消Auto layout,采用autoresizing+autoresizingMask。


3)使用RATreeView,点击row,分割线显示的解决办法。(https://github.com/Augustyniak/RATreeView/issues/28)
Add this lines


[tableView deselectRowAtIndexPath:indexPath animated:YES];
[tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];


at the begining of didSelectRowAtIndexPath method from RATreeView+TableViewDelegate
0 0
原创粉丝点击