第13月第25天 ios11 uitableview reloaddata contentsize

1.

 

                [tableView reloadData];

                dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

              /*contentsize没有更新*/

                });

 

 

iOS11默认开启Self-Sizing,关闭Self-Sizing即可。
self.tableView.estimatedRowHeight = 0; 
self.tableView.estimatedSectionHeaderHeight = 0;
self.tableView.estimatedSectionFooterHeight = 0;

 

http://www.cocoachina.com/bbs/read.php?tid=1725888

 

posted @ 2017-10-25 18:25  lianhuaren  阅读(526)  评论(0编辑  收藏  举报