ios 7 view with transparent content overlaps previous view

前端 未结 9 1661
独厮守ぢ
独厮守ぢ 2020-12-23 20:25

Recently I updated my xcode project to work with iOS 7, but i faced a big problem. Because my whole application has only one background image (UIImageView added to key windo

9条回答
  •  天涯浪人
    2020-12-23 21:09

    Ah, now I understand the issue. You were right, seems to be caused by the previous UIViewController not being hidden after the transition (because of the new transition effect).

    There doesn't seem to be any SDK method to control this behavior. Short of redesigning the app to not requiring the background be static, you'll probably have to roll your own navigation. OSNavigationController is a complete reimplementation of UINavigationController that might help you out. If they haven't updated to the iOS 7 transition, you'll probably be good to go. If they have you can always use an older version.

提交回复
热议问题