Status bar covering iPhone 6 view IOS 8

have you experience the status bar covering the view specially in Facebook apps when opening a link then closing it. the status bar is blocking the X of the page,

You can disconnect and re-connect and try again.  You should be selecting the Update button for the new Software.  The update while connected to iTunes should not take all that long from the download, through the Verification and then the Install.  If that down't work, you may have to Restore your iPhone to Factory Settings, insuring first you do have a current Backup available to Restore from Backup at a later time after the Restore as New.
Sometimes you can Update your iOS software in a WiFi environment even faster,  if you have enough memory available for the process to work.

Similar Messages

  • How do I remove the status bar from iPhone apps on the iPad?

    Whenever I go onto an iPhone app on my ipad I have recently had the status bar covering up some of my game. Here is an example: http://i.imgur.com/Q9xnYhT.jpg
    As you can see the score is hidden, I have gone through the settings and can't find anything,please help! It only started doing it when I reset my settings and updated to 7.1.

    Same problem...seems that this is for apps that are for iPhone and/or for both...but not for ones made just for iPad!
    Used to be able to click the 2X and the app would go full screen...not anymore...Apple you need to fix this!!!

  • The status bar is checked in view still unable to determine the size of itunes library.

    The Status Bar in checked in view and I am still unable to determine the size of library in Itunes.  Songs are not numbered.

    pziecina wrote:
    Hi
    The size of your text is set to 100% in your body elements css, this means that for Safari you will get a default font size of 16px, (providing you have not changed the browsers default settings).
    Change the body element font-size to 12px in the css and see what happens.
    PZ
    www.pziecina.com
    I've run out of helpful stars to hand out to all of you nice people. Thank you so much, and as the post quoted here also demonstrates, there are 'overrides' in CSS. It struck me this morning as I have been thinking about this, the very first thing to introduction to CSS is that the meaning of Cascading Style Sheets is that there is an order of priority in command, and the troops closest to the front lines get the final say. I would think that the statement in the document would be the final word, but apparently it's the CSS sheet that takes priority in this case.
    I think my thinking has been in reverse on this rule, not unusual for me, but now I need to re-educate myself thanks to this problem.
    Ken

  • Status bar covers top of iPhone apps on iPad2/ mini

    Since iOS 7 came out I have had several iPhone apps that have the status bar visible and is on top of the app, hiding the top portion of the screen (in games, usually where scores are or number of lives left). Prior to iOS 7 the satus bar was hidden if I had the game in 2x mode, but with iOS 7 I can't even go back to 1x mode. Is their a fix for this or is it a bug that will hopefully get fixed in an update? I kept hoping each update would fix it but no such luck yet. Or is it an app issue?
    Most of them are older apps and does this both on my iPad 2 and iPad Mini.

    I just want to leave this picture here, showing how annoying the status bar is since the last update.
    i made this picture on my ipad mini playing the iphone game Zenonia the status bar hides half of the map (upper left corner) and the backpack button (upper right corner) making it impossible to play the game because that button is really important.
    i hope that this gets fixed someday.

  • IPad status bar covers up my app's top  UIViews; okay after rotation

    I wrote an iPad app. When it is first started up (in iPhone simulator, or on real iPad) all the UIViews at the top of my window are partially covered-up by the iPads time/battery status bar.
    After I rotate the iPad (simulator or real one) the problem goes away: my UIViews appear shifted down, so they are under (below) the status bar. In other words, after I do the first rotation, the iPad knows to push my window downwards about 20 pixels to make room for the status bar. But before the first rotation (simulator or hardware) the iPad is not shifting my UIViews downward.
    Question: What can I do in software (during the startup logic) to get the iPad to push my window down to make room for the status bar?
    I think the iPad should do it automatically for me, but since it is not, I'm willing to take some action in the software to get it to happen. Any thoughts? NOTE: When I create all my UIViews, I'm using a coordinate of (0,0) for my upper left corner, which is correct, and after the first rotation everything works great. Also: I have auto-rotation enabled, so my app is always rotating to keep its display "up" so users can view it in all 4 rotations.

    Hi David -
    David Restler wrote:
    Question: What can I do in software (during the startup logic) to get the iPad to push my window down to make room for the status bar?
    If you're creating the view in your code, you're explicitly setting the view frame. The controller then assumes you know what you're doing and doesn't make any adjustment for the status bar (or any other bars that may be above or below the content area).
    In other words, when you explicitly set the frame in loadView, you're buying sole responsibility for the starting dimensions. In the case of an iPad with only the status bar, you need to drop the y-origin down 20, and shorten the height by 20:
    - (void)loadView {
    CGRect frame = CGRectMake(0, 20, 768, 1004);
    UIView *v = [[UIView alloc] initWithFrame:frame];
    self.view = v;
    [v release];
    NSLog(@"%s: self.view=%@ self.view.frame=%@",
    _func_, self.view, NSStringFromCGRect(self.view.frame));
    Btw, if you ever open your IB, try adding and subtracting the various simulated bars while watching the dimensions of the view in the Size Inspector. If the view is the main content view (i.e. connected to the 'view' outlet of File's Owner), you should see the y-origin and size adjust for each combination of bars. In fact, those dimensions will probably be grayed out, since IB doesn't trust us with such critical numbers. The point is, that when a view is loaded from a nib built with the correct simulated bars, the adjustment for the bars has already been saved in that file.
    I think the iPad should do it automatically for me
    If you want to see what the controller does by default (i.e. no nib and no frame defined in loadView), try this code:
    // MyAppDelegate.m
    #import "MyAppDelegate.h"
    #import "MyViewController.h"
    @implementation MyAppDelegate
    @synthesize window, viewController;
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    MyViewController *vc = [[MyViewController alloc] initWithNibName:nil bundle:nil];
    vc.view.backgroundColor = [UIColor grayColor];
    self.viewController = vc;
    [vc release];
    [window addSubview:viewController.view];
    [window makeKeyAndVisible];
    NSLog(@"%s: viewController.view.frame=%@",
    _func_, NSStringFromCGRect(viewController.view.frame));
    - (void)dealloc {
    [viewController release];
    [window release];
    [super dealloc];
    @end
    // MyViewController.m
    #import "MyViewController.h"
    @implementation MyViewController
    // Implement loadView to create a view hierarchy programmatically, without using a nib.
    - (void)loadView {
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
    [super viewDidLoad];
    @end
    When no nib name is specified, and the view loader can't find a nib that matches the owner's class name, and loadView isn't overridden, the view controller creates a default view (see no. 3 under "The steps that occur during the load cycle are as follows:" in [Understanding the View Management Cycle|http://developer.apple.com/library/ios/featuredarticles/ViewControllerPGf oriPhoneOS/BasicViewControllers/BasicViewControllers.html#//apple_ref/doc/uid/TP 40007457-CH101-SW19] in the View Controller Programming Guide for iOS). If you run the above example code, you should see the frame of the default view takes all bars into account.
    ... I'm using a coordinate of (0,0) for my upper left corner, which is correct
    As explained above, it's not correct if there are any upper bars
    and after the first rotation everything works great.
    Yes, all bets are off after an auto-rotation. The system recalculates the content view frame in that case (though that math doesn't always come out the way you want).
    Hope that helps to unscramble things a little!
    - Ray

  • My iPad 2 status bar has intruded into my Mexican Train Dominos game with iOS 7. Is there a fix?

    My iPad 2 status bar has intruded into my Mexican Train Dominos game with iOS 7. The status bar covers the top 10% of the screen with this game only.  Did not do this with iOS 6! Is there a fix?

    Try some basic troubleshooting:
    (A) Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    (B) Try reset all settings
    Settings>General>Reset>Reset All Settings

  • IPhone status bar space

    Hi,
       I am buiding an iPhone application my requirement is that it should also be compatible with iPad.Now when I am running the application everything goes perfect, but in iPad when the PhotoPicker is presented , a white space is shown in status bar's frame. How could we get the status bar of iPhone frame in iPad. 
    Any help will be appreciated.
    Thank you.

    Hello all,
    A little more detail for everyone (and more questions). I found out that the NIB file for my item selector was not being used *+at all+*. Frustrating. I then did the following prior to addSubView:
    \[\[ navigationController view] setFrame:CGRectMake(0.0, 0.0, 320.0, 480.0)\];
    And voila, the item selection box takes the proper size of the screen with no nasty gaps in between the navigation bar and the status bar.
    Any ideas why the UINavigationController would be defaulting the navigation bar so low? Here's my "selectItem" method:
    - (IBAction)selectItem:(id)sender
    ItemSelectorController *itemSelectorController = \[\[ItemSelectorWindow alloc\] init\];
    UINavigationController *navigationController = \[ \[ UINavigationController alloc \] initWithRootViewController:itemSelectorController \];
    \[\[ navigationController view\] setFrame:CGRectMake(0.0, 0.0, 320.0, 480.0)\];
    \[self.view addSubview:\[navigationController view\]\];
    All of this occurs in the mainViewContoller which is a UIViewContoller. The item selector has its own itemSelectorController. Am I doing something wrong here?
    Now I need to find out how to get out of this window and send a message back to the mainViewController with a reference to the item that was selected. Basic stuff I know.
    - George

  • There's a huge blank white screen below the status bar, that covers half of the screen in 3.6

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    When I opened Firefox there is a big blank screen below the status bar covering up half of the screen. It only happens on 3.6 version of Firefox
    == This happened
    ==
    Every time Firefox opened
    == Few Days Ago
    ==
    == Troubleshooting information
    ==
    Application Basics
    Name Firefox
    Version 3.6.7
    Profile Directory
    Open Containing Folder
    Installed Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Extensions
    Name
    Version
    Enabled
    ID
    Stylish 1.0.9 true {46551EC9-40F0-4e47-8E18-8E5CF550CFB8}
    Cooliris 1.12.0.36949 true [email protected]
    FoxTab 1.3 true
    WOT 20100503 true
    ImTranslator 3.3.3 true {9AA46F4F-4DC7-4c06-97AF-5035170634FE}
    Are You Watching This?! 2.5 true [email protected]
    SearchPreview 4.6 true
    qtl 14.3 true [email protected]
    DVDVideoSoft Menu 1.0.1 true
    NEW Glasser by SzymekPL 2.2.0.3.7 true [email protected]
    foof 1.2.8 true [email protected]
    Java Console 6.0.20 true
    Full Screen Homestar Runner 2.9 true
    Flash Game Maximizer 1.3.6 true {258735dc-6743-4805-95fc-f95941fffdad}
    MultiMediaWebRecorder 0.397 true [email protected]
    Download Statusbar 0.9.7 true
    Extended Statusbar 1.5.4 true
    NoScript 1.10 false {73a6fe31-595d-460b-a920-fcc0f8843232}
    WebSitePulse Transaction Recorder 1.4 false [email protected]
    Smart Bookmarks Bar 1.4.3 true [email protected]
    Xmarks 3.7.8 true [email protected]
    Gmail Watcher 1.10 true gmailwatcher@sonthakit
    Yahoo! Mail Watcher 1.10 true yahoomailwatcher@sonthakit
    Dr.Web anti-virus link checker 1.0.21 true {6614d11d-d21d-b211-ae23-815234e1ebb5}
    FIFA Online Web Launcher 1.1 false [email protected]
    ReminderFox 1.9.8.2 false
    1-Click YouTube Video Downloader 1.4 true [email protected]
    OurWorld.com Toolbar 2.7.0.14 true {80f6f9bf-9fd1-4f41-9ddf-6dd070f4f62f}
    Yahoo! Toolbar 2.1.1.20091029021655 false {635abd67-4fe9-1b23-4f01-e679fa7484c1}
    Yoono 7.3.6 false
    Form History Control 1.2.6 true [email protected]
    Boost for Facebook 10.0.2 false {47624dda-b77e-4feb-820a-e4f077d5d4ca}
    Fireclam 0.6.5 false
    Viral Threat Level 0.54 false [email protected]
    Ghostery 2.2.1 true [email protected]
    FootieFox 2.1.10 false {9fb7d178-155a-4318-9173-1a8eaaea7fe4}
    Puzzle 0.4.3 true [email protected]
    Tab Mix Plus 0.3.8.4 true
    FastestFox 4.1.5 true [email protected]
    AniWeather 0.7.4 true {4176DFF4-4698-11DE-BEEB-45DA55D89593}
    Get Styles 1.0.22 true {6236BA26-C117-4007-928C-DE0716C7FA80}
    Usage Stat 1.0.2 true {6236BA26-C117-4007-928C-DE0716C7FA96}
    FBFan 1.0.1 true {6236BA26-C117-4007-928C-DE0716C7FA99}
    Better YouTube 0.4.3 true [email protected]
    Show my Password 2.0 true
    LastPass 1.69.1 true [email protected]
    Favicon Picker 3 0.5 true {446c03e0-2c35-11db-a98b-0800200c9a67}
    Glassy Urlbar 0.5.2 true tgrsc@glassyUrlbar
    RSS Ticker 3.2.2 true {1f91cde0-c040-11da-a94d-0800200c9a66}
    iMacros for Firefox 6.7.0.1 true {81BF1D23-5F17-408D-AC6B-BD6DF7CAF670}
    Amplify 3.0.0 true {8f5ce3f8-1735-4680-b15e-108f2f50e8ba}
    Tidy Favorites Online 6.23 true
    Modified Preferences
    Name
    Value
    accessibility.typeaheadfind true
    accessibility.typeaheadfind.flashBar 0
    browser.history_expire_days.mirror 180
    browser.link.open_newwindow.restriction 0
    browser.places.importBookmarksHTML false
    browser.places.smartBookmarksVersion 2
    browser.startup.homepage http://www.google.com/
    browser.startup.homepage_override.mstone rv:1.9.2.7
    browser.tabs.insertRelatedAfterCurrent false
    browser.tabs.warnOnClose false
    extensions.lastAppVersion 3.6.7
    keyword.URL http://search.conduit.com/ResultsExt.aspx?ctid=CT2383985&q=
    network.cookie.prefsMigrated true
    places.history.expiration.transient_current_max_pages 32166
    places.last_vacuum 1278789082
    privacy.clearOnShutdown.cookies false
    privacy.clearOnShutdown.downloads false
    privacy.clearOnShutdown.sessions false
    privacy.cpd.cookies false
    privacy.cpd.downloads false
    privacy.cpd.extensions-tabmix false
    privacy.cpd.history false
    privacy.cpd.sessions false
    privacy.sanitize.migrateFx3Prefs true
    privacy.sanitize.timeSpan 0
    security.warn_viewing_mixed false
    == Firefox version
    ==
    3.6.7
    == Operating system
    ==
    Windows 7
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.7) Gecko/20100713 Firefox/3.6.7
    == Plugins installed
    ==
    *-Cooliris embedded in a tab
    *Office Plugin for Netscape Navigator
    *NPRuntime Script Plug-in Library for Java(TM) Deploy
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.3"
    *Default Plug-in
    *Provides additional functionality on Facebook. See our web site for details.
    *Game Loader Plugin for Power Challenge Games
    *Unity Player 2.6.1f3
    *BrowserPlus -- Improve your browser! -- http://browserplus.yahoo.com/
    *Pando Web Plugin
    *Shockwave Flash 10.1 r53
    *Adobe Shockwave for Director Netscape plug-in, version 11.5
    *GEPlugin
    *Yahoo Application State Plugin version 1.0.0.7
    *Google Update
    *Version 0.9.17, copyright 2008-2010 Veetle Inchttp://www.veetle.com/
    *Version 0.9.17, Copyright 2006-2009 Veetle Inchttp://www.veetle.com/
    *Version 0.9.17, copyright 2006-2010 Veetle Inchttp://www.veetle.com/
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers

    I have v. 3.6.8. It will display blank white pages at some site and not at others. I use safe mode and the access is reversed... what used to open doesn't and what didn't does. . .
    Is anyone trying to fix this problem - or are users just left to chasing their tails on this issue?
    Just curious ... in order to help me decide to wait for help or move on to something else...
    Until that time ... Earl J.

  • Status bar isn't showing even though it's checked in View

    I can't see the bottom, navigation / status bar. Status bar is ticked in View menu.
    It was showing yesterday.
    I can see a tiny part of the right hand bottom scroll arrow but the bar and the icons in it aren't visible. In effect, the viewing area has increased by a few mm.
    == This happened ==
    Just once or twice
    == I'm not sure how or what I was doing. I went to click the SEO for FF button and I couldn't see it.

    Are you sure the bottom of the window isn't just off the bottom of the screen? Try maximising the window and seeing if the bar reappears.
    Gerv

  • I can't see the show status bar option in iTunes 11

    I can't find the 'show status bar' option in the View Option section, it simply isn't there. Also, every time I go to the store, iTunes crashes.

    Are you working with Pretest Questions?
    Is it happening with specific sldie, can you chekc the slide type and verify again.
    Pretest do not allow skin-playbar to appear.
    Thanks,
    Anjaneai

  • Problems with Syncing iPhone 3G (4.2.1. iOS).  What is appearing in the status bar is "Syncing "untiled playlist.." and its stuck at backing up.  I noticed that my name has been replaced to "untitled playlist". Whats wrong

    Problems with Syncing iPhone 3G (4.2.1. iOS).  What is appearing in the status bar is "Syncing "untiled playlist.." and its stuck at backing up.  I noticed that my name has been replaced to "untitled playlist". Whats wrong

    Welcome to Apple Discussions!
    Maybe a long shot, but WD is not known for the quality of some of their enclosures, although I do like the drives themselves. It may be worth mounting this drive in a different enclosure, something like one of OWC's FireWire enclosures with the highly reliable Oxford chip sets. I wouldn't be inclined to trust a WD enclosure, especially if it already seemed to be acting in a flakey manner.
    Here's an example of what I mean:
    http://eshop.macsales.com/item/Other%20World%20Computing/MEP924FW8E2O/
    I have 3 of these and I really like them.
    From what I understand, if the drive spins up, it is often possible to recover data from it. To be absolutely certain to destroy the data, you just about have to take a hammer to the disk. Hopefully, there will be a way to get your data back.
    Good luck!

  • Should my iPhone 1 (iOS 3.1.3) with Bluetooth 2.0 (Handset HSP?) work with wireless earbuds with BT 4.0 and the Headset (and Handsfree, A2DP, AVRCP) protocol? They pair and connect; status bar looks good. But audio always comes out the speaker. Thx.

    Should my iPhone 1 (iOS 3.1.3) with Bluetooth 2.0 (Handset HSP?) work with wireless earbuds with BT 4.0 and the Headset (and Handsfree, A2DP, AVRCP) protocol? They pair and connect as expected (with a PIN); status bar looks good and shows Bluetooth active, and I even see the iPhone displays the battery levels of the wireless earbuds. But audio always comes out the speaker. (If I plug in wired headphones into the headphone jack then audio comes into the wired headphones, as expected.) I have rebooted the iPhone; I have had it forget about the wireless earbuds, and repaired and reconnected; I have reset all network settings. Thx in advance.
    PS: I understand that more recent versions of iOS have a way to choose where audio output goes (speaker, headphone jack, Bluetooth device). Does this older version of iOS? I could not find an option or setting.

    I've noticed this lately as well, with my iPhone 4. I couldn't confidently pin it directly on any particular iOS update, but my iPhone used to automatically connect up via Bluetooth with my Prius's handsfree feature, and now it doesn't. I work with a CE-based device at my job, with Bluetooth capability, and I used to test out that feature by having it discover my iPhone. This no longer works either.
    What I have found (not really a solution, but it does work and may be a clue for Apple) is that if I simply go to the Settings app then the General -> Bluetooth screen and let it sit there, it will pair right up with my car within a few seconds. Bluetooth is always on, and always says "Now Discoverable" at the bottom of the settings screen.

  • HT1222 I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit

    I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit and sometimes it vanishes automatically. I,m confused.
    Secondly i have an update IOS 7.0.4 waiting in my Software Update menu. I have tried so many times to update my iphone but it always fails to update the IOS 7.0.4. Any body suggest anything regarding this

    Wow. Lots of help. Thanks apple

  • Updated my Iphone 4s to the new IOS and now i can't restart or recover it. as soon as it starts recoring, the status bar fades and the connect to itunes screen appears. WHAT THE HEY!? I'm SICK of UPDATE ISSUES!!!!!!

    Updated my Iphone 4s to the new IOS and now i can't restart or recover it. as soon as it starts recoring, the status bar fades and the connect to itunes screen appears. WHAT THE HEY!? I'm SICK of UPDATE ISSUES!!!!!!

    Yes, yes, yes... I've gone through all the common sense trouble shoots. Would't be here asking questions if that answers existed on the net. Sorry if I sound a bit edgey, but I've had nothing but issues with every update since IOS 7. Clearly there's nothing that can be done about this. and this is the final nail in the coffin to try to make me buy an Iphone 5.

  • IPhone (iOS 7) status bar text is white in video app

    The status bar text in the native video app is white, this not visible.
    I'm using an iPhone 5S running iOS 7.0.3, the data was backed up from my iPhone 4 which was running iOS 7

    After a reset, the next steps in user troubleshooting is restore from backup, and then if necessary, restore as new. You can always make a backup of your device, and then try the restore as new. This deletes everything from the device, but will install the iOS. If it works then, go ahead and restore from your backup. If it breaks again, then it has something to do with the backup.

Maybe you are looking for