Linked Questions
52 questions linked to/from iOS 7 status bar back to iOS 6 default style in iPhone app?
738 votes
78 answers
335k views
Why is there extra padding at the top of my UITableView with style UITableViewStyleGrouped in iOS7?
Starting in iOS7, there is additional space at the top of my UITableView's which have a style UITableViewStyleGrouped: The tableview starts at the first arrow, there are 35 pixels of unexplained ...
109 votes
14 answers
111k views
iOS 7 - Status bar overlaps the view
I have a ViewController which is inside a UINavigationcontroller, but the navigationBar is hidden. When I run the app on iOS 7, the status bar shows on top of my view. Is there a way to avoid this? I ...
114 votes
9 answers
74k views
Navigation bar appear over the views with new iOS7 SDK
CGRect cgRect1 = [[UIScreen mainScreen] applicationFrame]; UISearchBar *mySearchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, cgRect.size.width, 40)]; mySearchBar....
49 votes
25 answers
110k views
iOS 7 status bar overlapping UI
I recently upgraded to xcode 5 and when I run my app in the iOS simulator the splash screen overlaps the status bar and when you are in the app the status bar overlaps onto elements on my app, like a ...
99 votes
6 answers
47k views
Changing the status bar text color in splash screen iOS 7
I know that are already some stackoverflow questions that say how to change the status bar for all view controllers. I am currently changing the color of status bar this way: if(IS_IOS7) [[...
111 votes
6 answers
49k views
Interface Builder: What are the UIView's Layout iOS 6/7 Deltas for?
I just noticed the iOS 6/7 Delta property found under the UIView's structs layout. What is this for and why is this missing from AutoLayout?
58 votes
11 answers
76k views
Status bar and navigation bar issue in IOS7
I am migrating my application to iOS 7. For handing the status bar issue I have added this code if([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0f) { CGRect frame = self....
47 votes
17 answers
58k views
iOS 7 Status Bar Collides With NavigationBar
I have a view controller in my app that has a navigation bar dragged on it in the storyboard. It was working fine in the iOS 6 but in iOS 7 it look like this: The status bar and the navigation bar ...
48 votes
14 answers
64k views
UINavigationBar/Status Bar issue in IOS7
Final EDIT (Rather than having an overly long question with edits making a final edit for clarification, please see other edits if needed). Controller Setup I have an application that is setup as ...
18 votes
6 answers
17k views
UISearchBar overlaps status bar in iOS
I (just like everyone else here) am running into the same Status Bar overlap issue that everyone else is, with a little twist, and that is why I opening a new question about this. There seems to be ...
18 votes
4 answers
13k views
iOS 7 Navigation Bar Hiding Content
I have an app that was developed in iOS 6. But now in iOS 7 or even my app compiled for iOS 6, but running on an iOS 7 device the top navigation bar (the new giant one in iOS 7) my content is hidden. ...
9 votes
6 answers
10k views
After updating to iOS 7 all views in iOS 6 moved up and are hidden by the navigation bar
I have updated my iPhone to iOS 7 today and recompile my app for it and all views in .xib files and on device are moved up and their upper part is hidden by the navigation bar. In my viewController I ...
28 votes
1 answer
34k views
New iOS 7 statusBar leaves a range 20px in apps compiled in Xcode 5 [closed]
this week came out iOS 7 Beta , and whenever an update comes out these always have to update the apps for compatibility consetar some bugs. Well, I installed iOS 7 on my iPhone and apps principle ...
5 votes
3 answers
53k views
How to set Status bar background color iOS 7 [duplicate]
iOS 6 look... Same way i would like to display status bar in iOS 7 like see this but My actual output (Overlap) i have tried following logic open your info.plist and set "View controller-based ...
14 votes
6 answers
16k views
iOS 7 status bar transparent
In storyboard, in a view controller I tried add a navigation bar under the status bar, running it, it is transparent and shows a label that's supposed to be blurred, like by navigation bar. But when ...