After updating Xcode to IOS 9, app stucks on splashscreen and initial viewcontroller is not loaded

后端 未结 1 363
执笔经年
执笔经年 2020-12-19 21:30

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

相关标签:
1条回答
  • 2020-12-19 22:21

    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.

    0 讨论(0)
提交回复
热议问题