TableViewController and TableViewCell are working properly for both iOS 10.2 and iOS 11.2 , which is developed with Objective C and compiled by xcode 8. Now I'd been upgraded my xcode to xcode 9.2. Then cell.textLabel.text are not appear at iOS 11.2 simulator. But with iOS 10.2 simulator , it is working properly. When I debug, evth is fine and also have data. But it was not showed on simulator. Any idea please?
Asked
Active
Viewed 62 times
1 Answers
0
Normally it won't happen. Give a check if there's any deprecated code lines. Sometimes, it might not show error or warning, but can cause unexpected result.

Rina
- 18
- 1
-
Yes. I'd already found sth stupid. Table view was covered by other view. [self.view sendSubviewToBack:bg] is no longer support and replaced it with " self.tableView.backgroundView = bg; " . Solved. – Emerald Feb 28 '18 at 06:18