Questions regarding The status bar on iOS 7 devices which overlays the web view
Questions tagged [ios7-statusbar]
82 questions
0
votes
1 answer
Status bar is not displaying in mfmailcomposeviewcontroller
I have problem with status bar. Its is displaying as usual in other views but when i try to send mail using mfmailcomposeviewcontroller it get disappear.
I have tried all ways but did not put any effect.
I have tried
[self…

Maruti
- 400
- 4
- 14
0
votes
1 answer
UIViewcontroller in iOS 7 starting from top of screen
I have developed a app in Xcode 5.1 for iOS 6.1 and above.
I designed the View controllers from the top without leaving any margin. When I run this on iOS 6.1, it starts from below the top bar that indicates carrier and battery, but on iOS 7 it…

ankit_rck
- 1,796
- 2
- 14
- 24
0
votes
2 answers
iOS 7 NavigationBar Back Button Custom Image with no Label
I am trying to create a custom back button on a navigation bar. I start from the following:
// Nav bar - back button
[[UINavigationBar appearance] setTintColor:COLOR_WHITE];
[[UINavigationBar appearance] setBackIndicatorImage:[[UIImage…

rjinski
- 615
- 1
- 7
- 12
0
votes
1 answer
Status bar considerations w/ iOS7 and previous iOS versions
I noticed my iPhone app does not behave the same between the iOS7 version and the previous iOS version. Of course there are the obvious difference (the styling), but i am talking about coded logic that depends on the status bar being visible or…

AlvinfromDiaspar
- 6,611
- 13
- 75
- 140
0
votes
2 answers
iOS 7 navigation bar under status bar after show mail-sms composer
After upgrade my project to iOS7 my views showed under status bar.Later i fixed this issue by adding following code to DashBoardViewController's(Root navigation controller) viewdidAppear
float systemVersion=[[[UIDevice currentDevice] systemVersion]…

Emre
- 3
- 1
-1
votes
5 answers
iOS Hide status bar for iPhone 6 and 6+
i am trying to hide the status bar only for iPhone 6 and 6+ this is what i tried so far.
if (screenWidth == 375) {
// Remove status bar for iPhone 6
[[UIApplication sharedApplication] setStatusBarHidden:YES
…

Kevin Alexandru
- 35
- 4
-1
votes
1 answer
Faded Status Bar in iOS?
In Facebook's new app, Facebook Paper, there is a status bar that is slightly faded out (the text is somewhat faded out). I've tried several different methods but they haven't worked. Any ideas on how to replicate this? Below is a screen shot:…

Colton Anglin
- 431
- 3
- 9
- 19