iOS 7 status bar like iOS 6

前端 未结 5 1313
南笙
南笙 2021-02-08 04:05

I have an app with a support landscape and portrait mode. And I need the same behavior status bar like on iOS 6. What is the simplest way to do this?

I\'ve tried the sol

5条回答
  •  逝去的感伤
    2021-02-08 04:44

    If you are on Xcode 5 and you are installing in iOS 7 then sorry, this will not happen (as far as I know).

    If you want to see the status bar on iOS 7 like iOS 6 than open your project in Xcode 4.x.x and install in iOS 7. One problem with this approach I found is that sometimes Xcode 4.x.x doesn't recognise an iOS 7 device.

    But if your Xcode 4.x.x can show your iOS 7 device then it will work.

    The .api generated from Xcode 4.x.x will work in both iOS 6 and iOS 7, but you will not get extra space (of the status bar) on iOS 7 and the new look of keyboard, picker, switch, etc. But yes, you will get the new UIAlertView (I don't know why this is new and the other controls are old.)

    I hope we will soon get a better solution in Xcode 5 for this.

    UPDATE:

    I found the way to run the app from Xcode 5 as Xcode 4. This is just matter of the base SDK. If you want to built as Xcode 4 (iOS 6 SDK) from Xcode 5 then do the following.

    1. Close Xcode 4 and 5.

    2. In Xcode 4 Go to

      /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs

    3. Here you will find iPhoneOS6.1.sdk. Copy this folder. And now go in Xcode 5 on the same path. In Xcode 5, you will find iPhoneOS7.0.sdk. Paste iPhoneOS6.1.sdk with it.

    4. Now close the Finder and launch Xcode 5. Go to project target setting -> Build Setting and find Base SDK. Select iOS 6.1 as Base SDK. This will also work for 6.0. You just need to find iPhoneOS6.0.sdk.

    5. Now you will see the device name twice in the run dropdown box. One for SDK 7.0 and one for SDK 6.1. So now you can run both ways with iOS 6 SDK and iOS 7 SDK.

    I hope this will help someone.

提交回复
热议问题