I'm working on an app with a navigation controller. Swift + objective C
Important note: This freeze happens 100% when testing on iPhone 5c and never happens when testing on iPhone 6s
The scenario is:
- Go to TableViewController A
- Touch an item of the list to reach TableViewController B
- Go back to TVController A by pressing the top left arrow
- The app shows TableViewController A but freezes right away
The UI is frozen but the app is still running. If I press the Pause button (debug mode), I can see that the Thread 1 (Main thread) stack is:
0 semaphore_wait_trap
45 UIApplicationMain
46 main
47 start
I don't know where to start investigating so that I can find where the problem is.
Any ideas?