我录了一个视频: https://pan.baidu.com/s/1o8rpO3g
我现在程序碰到的问题是例如 tableView 要加载 7 条数据,但是只展示出来 4 条。但是如果轻轻下滑一下 tableView 的话,其余的 3 条数据就会展示出来。研究了两天没,没头绪。。
Github: https://github.com/LisonFan/TopNews/tree/master/TopNews/Main/CommentsSystem
1
vincentxue 2016-11-15 14:25:50 +08:00 1
看视频像是数据源有更新,但界面没有刷新。
|
2
lisonfan OP |
3
lisonfan OP @vincentxue
不过如果我给固定值的话,就没问题。 |
4
jackisnotspirate 2016-11-15 14:43:35 +08:00 via iPhone 1
通常是主线程问题
|
5
Asamu 2016-11-15 18:40:46 +08:00 1
在主线程 [_tableView reloadData];
|
6
lisonfan OP |