以前一直运行很好的Table页面,突然发现cell有时候会莫名其妙的不见了(整个Cell区域变成空白了)。
貌似是在iOS12上出来的新问题。
解决办法
如果cell是需要复用的,在cellForRowAtIndexPath使用
[tableView dequeueReusableCellWithIdentifier:@"********"];如果cell不需要复用,就不用registerClass:forCellReuseIdentifier:
以前一直运行很好的Table页面,突然发现cell有时候会莫名其妙的不见了(整个Cell区域变成空白了)。
貌似是在iOS12上出来的新问题。
解决办法
如果cell是需要复用的,在cellForRowAtIndexPath使用
[tableView dequeueReusableCellWithIdentifier:@"********"];
如果cell不需要复用,就不用registerClass:forCellReuseIdentifier: