UIView display issue in iOS 7

前端 未结 5 2008
长发绾君心
长发绾君心 2020-12-10 09:23

I already make the app for ios 6 using xib. All the views are shown perfectly same as xib. But in IOS 7, due to the status Bar the views are moves to up & there is a bla

5条回答
  •  眼角桃花
    2020-12-10 10:00

    If you have a custom UINavigationController try setting the translucent property of the navigationBar to NO like:

    navigationBar.translucent = NO;
    

    This worked for me

提交回复
热议问题