Using a storyboard
in Xcode, I have an application that worked nicely, but after latest Xcode update (IOS 9), the app stucks on the splash screen.
Didfini
Ok, so in the end the problem was a "too small" text in a textview below an imageview. Why the text was too small, or what "too small" means, no clue. Except that in this particular case it was 10 characters.
The Solution
I changed the initial text of each textview to a string with at least 10 characters. And I change the text after loading the view programatically to the text I want. This works as expected and the view loads.
I will try to file it as a bug to apple, because this can never be the correct behaviour. Thank you all for giving advice in this matter.