ios 6 and ios 7 incosistance in view
NickName:Coldsteel48 Ask DateTime:2013-12-12T21:13:53

ios 6 and ios 7 incosistance in view

as we know in iOS 7 the status bar overlaps with a view but not in iOS 6 .

I developed whole application for iOS7 and now I being asked to make iOS6 support for it but it is just a mess.

as we see in this Overlaps the status bar on view iOS7 question there is solution for iOS 7 to be like iOS6

but can I make it opposite way ? and somehow make iOS 6 behave like iOS7 with status bars ?

Copyright Notice:Content Author:「Coldsteel48」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/20544554/ios-6-and-ios-7-incosistance-in-view

Answers
Popeye 2013-12-12T13:32:33

You can't make iOS 6 status bar act like iOS 7 status bar they are completely different designs. iOS 7 uses a flat UI whilst iOS 6 doesn't. Have a read through the iOS 7 transition guide for a better understanding and how to handle the differences. \n\nTo be specific towards the Status bar here is the section of that document that tells you how to handle it.",


More about “ios 6 and ios 7 incosistance in view” related questions

ios 6 and ios 7 incosistance in view

as we know in iOS 7 the status bar overlaps with a view but not in iOS 6 . I developed whole application for iOS7 and now I being asked to make iOS6 support for it but it is just a mess. as we s...

Show Detail

iOS animation gets cancelled in iOS 7 but not in iOS 6

I have my own implementation of a UIActivityView in my app. It is composed of two images that rotate in opposite directions. The view is created in viewDidLoad of a view controller and starts ani...

Show Detail

UICollectionView reload on iOS 6 and iOS 7

I am working app which uses UICollectionView. This app runs very well on iOS 6 but fails to run it on iOS7. I debug a lot and come to conclusion that reload method of UICollectionView doesn't work ...

Show Detail

Modal view controller works on iOS 7, leaves a gap on iOS 6

So I have this custom UIViewController subclass, that I present modally with -presentViewController:animated: (NOT pushing it onto a navigation stack). I'm trying to make it play nicely with both ...

Show Detail

image position iOS 7 vs iOS 6

I have a background image issue for my app after I updated the project for iOS 7. The app is navigation controller managed. I have a background image (UIImageView) created in IB. Since I place it a...

Show Detail

iOS 6 Status Bar to iOS 7

i can't understand how create the same black status bar of iOS 6 to iOS 7, i have found this question on SO: iOS 7 status bar back to iOS 6 default style in iPhone app? in my app i have only lands...

Show Detail

iOS6/iOS 7 UIView transparency

So I have a game application, it has answer screen. Answer screen has 0.9 alpha and answer button has 1.0f. You can see on screenshot. The same on iOS 7 Button alpha is still 1.0, but it looks

Show Detail

Autolayout adjusts perfect in iOS 7 but not in iOS 6

I have a view in my app that is in landscape and I have set upp the UI in my storyboard so it responds as I want to different screen sizes. Now this works exactly as I want in iOS 7 but when I ran ...

Show Detail

Apps for ios 6 and ios 7

Im trying to update my app to have the iOS 7 UI. When i run it the way it is now, it runs nicely on iOS 6, but in iOS 7 it just push the navigation bar and everything else up, but when i edit my xi...

Show Detail

Making a nav controller work the same in iOS 6 and iOS 7

How can a navigation bar be supported in both iOS 6 and iOS 7 with a UIContainerView via a storyboard? I am updating an iOS 6 app to iOS 7, but want to continue to support iOS 6. I have a main top

Show Detail