Iphone 4 - IO6 Problem:  My apps are stuck on "loading" - no new apps will install.  Status bar is stuck, so apps will not install.  How to fix?

Iphone 4 - IO6 Problem:  After upgrading to the absoulte crap that is IO6, one of my apps is stuck on "loading" and no new apps will install.  If I delete this "loding app" (which happens to be iMovie), the next app that tries to install gets stuck on "loading" and every other app gets stuck on "waiting."  How to fix??

I had the same issue and tried several options like rebooting, resyncing, deleting and reinstalling apps, restarting the network connection but none of them worked. Eventually I opened iTunes on my iPhone (not on Mac) to find that it had two pending downloads that was stopping the rest of the apps from loading fully.  You need to cancel them by swiping left to right over the listed apps and select cancel/delete. It worked for me.  Good luck!

Similar Messages

  • I accientally synced my iPhone to 2 different computers. Now my older apps are on one computer and new apps are on another.  Every time I try to sync all apps on one computer it takes the other apps of and just syncs what is on that computer - Help please

    I accientally synced my iPhone to 2 different computers. Now my older apps are on one computer and new apps are on another.  Every time I try to sync all apps on one computer it takes the other apps of and just syncs what is on that computer - Help please
    I cannot for the life of me figure this out.

    What you need to do is connect your phone to iTunes but do not click sync.  Go to File at the top and click transfer purchases from phone, that'll put all your apps into iTunes.  When it's done transferring, locate your phone on the sidebar and click it.  Then find the apps option above the picture of your iphone, you can select which apps you want or don't want on your phone.  After selecting your apps then you can sync.  Once you do this you should never have your problem anymore.

  • Everytime I update my music, my apps are being reinstalled so I have to submit my username and password in every app all over again.

    Everytime I update my music, my apps are being reinstalled so I have to submit my username and password in every app all over again.

    Everytime when you sync your iPhone to iTunes , have you authorize your account? Authorize account will be required if you have one or more apple device that sync with the same iTune. You can authorize your apple account by signing the apple account in iTunes. Hope it help.

  • Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

    Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

    Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

  • App Store shows 9 updates but all Apps are up to date I have tried re downloading all the updates. All Apps show the correct version number post update.

    App Store shows that I have 9 updates but all Apps are up to date I have tried re downloading all the updates. All Apps show the correct version number post update.

    I have the same issue with one App in the App Store. The app is installed and current. But the App Store says I have an update. I tried restarting. No help.

  • 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

  • Ever since i plugged my iphone into the computer, all of my music has been messed up. The songs don't have the right album cover i guess they all just got mixed up somehow. i dont know but its annoying and im not sure how to fix it.

    Ever since i plugged my iphone into the computer, all of my music has been messed up. The songs don't have the right album cover i guess they all just got mixed up somehow. i dont know but its annoying and im not sure how to fix it.

    If not this:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Then
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • HT1476 my iphone 4 is only charging while off and everytime i try to reset it it still does the same thing does anyone know how to fix this ?

    my iphone 4 is only charging while off and everytime i try to reset it it still does the same thing does anyone know how to fix this ? ive tried resetting 5 times already , ive tired different plugs and usbs , nothings working

    You will need to contact the app developer if your having problems with a 3rd paty app.  See if they have a support forum.

  • I registered my new iPhone 5s to my usual Apple ID, however it isn't showing in my devices when I log in. I tried to register it by adding a new device, but it tells me it's already registered to a different Apple ID. I'm really not sure how to fix this.

    I registered my new iPhone 5s to my usual Apple ID, however it isn't showing in my devices when I log in. I tried to register it by adding a new device, but it tells me it's already registered to a different Apple ID. I'm really not sure how to fix this. I only have the one Apple ID and the phone is brand new, purchased directly from Apple.
    When I check on the phone itself (iCloud and App Store settings) the Apple ID is correct. I'm not sure where else to check.
    Whilst setting up the phone, it prompted me to register, which I did. Then when connecting to my laptop through iTunes it prompted me again so I registered again. I even got a confirmation email to the email address associated with my Apple ID that the registration was successful.
    How can I add my iPhone 5s to the list of devices on the correct Apple ID?
    Thanks in advance for any advice.

    Found the answer to my question after posting (in related discussions)
    https://discussions.apple.com/message/12331666#12331666
    Will call Apple Care as soon as I can.

  • My iphone 5 will no longer sync to Microsoft Outlook 2010.  Any ideas how to fix this?

    My iphone 5 will no longer sync to Microsoft Outlook 2010.  Any ideas how to fix this?

    Hi jenmik,
    Welcome to the Apple Support Communities!
    If you are having issues syncing your iPhone to Microsoft Outlook 2010, please read over and use the information provided in the attached article to assist you in troubleshooting. 
    Troubleshooting Sync Services on Windows with Microsoft Outlook 2003, Outlook 2007, or Outlook 2010 - Apple Support
    Cheers,
    Joe

  • I recently syncs some photos from my PC to my Iphone 4. When I press on one of the new pictures a picture of one of my old pictures shows up. How can I fix it??      iPhone4.  Just updated

    I recently syncs some photos from my PC to my Iphone 4. When I press on one of the new pictures a picture of one of my old pictures shows up. How can I fix it??      iPhone4.  Just updated

    You do NOT have duplicates.  This is how Apple handles photos.
    Just as a song is in your Itunes Library and that exact same song can be accessed from a playlist, all synced photos are in the Photo Library and those exact same photos can be accessed from the album.

  • On my iPad music app when i hit the volume up button after a second it mutes again . Any suggestions as to how to fix this?

    On my iPad music app when i hit the volume up button after a second it mutes again . Any suggestions as to how to fix this?

    Hi lukeshk,
    If I understand correctly and you're having trouble accessing the iTunes Store in iOS 7 on your iPad, I would recommend this article of troubleshooting:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    I'd also suggest running through these:
    iPhone, iPad, iPod touch: Turning off and on (restarting) and resetting
    http://support.apple.com/kb/HT1430
    iOS: Force an app to close
    http://support.apple.com/kb/ht5137
    Cheers,
    - Ari

  • I am looking at an incomplete green status bar. I turned the computer off and back on. The status bar is stuck at 1/3.

    I shut my mac down 1 week ago. Apparently, it chose to restart. I am looking at an incomplete green status bar. I turned the computer off and back on. The status bar is stuck at 1/3. What can I do? I have no time machine backups. 

    If your iMac is Intel base, resetting SMC as well as NVRAM(PRAM) could solve the problem.
    Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support

  • How can I find what apple ID I used to register my iMac when I first booted up? I am being told that by using this ID I will be able to go on to the App store and down load iPhoto at no cost. Is this true? My iMac does not have iPhoto resident on it now

    How can I find what apple ID I used to register my iMac when I first booted up? I am being told that by using this ID I will be able to go on to the App store and down load iPhoto at no cost. Is this true? My iMac does not have iPhoto resident on it now and I only purchased my new iMac in December 2012
    Thanks....

    Launch Keychain Access and click on Login in the left hand pane and then on Passwords.  Next do search for Apple in the search field at the top and click on Apple ID Authenicication in the list that comes up.  That will give you the ID no. and password.
    OT

  • Sync session failed to start on my ipod touch. tried to delete back up history but it only shows my daughters ipod touch and not mine! Im unable to update or purchase new aps, not sure how to fix this problem?

    sync session has failed to start on my ipod touch. Tried to delete the back up but it only shows my daughters ipod touch. Iam unable to update or purchase new aps, not sure how to fix this problem?

    Try:
    https://discussions.apple.com/thread/3415227?start=0&tstart=0
    https://discussions.apple.com/message/16400530#16400530

  • Trying to sync my iphone with itunes on my new pc and it is telling me that my comp is not authorized. how do i authorize it?

    trying to sync my iphone with itunes on my new pc and it is telling me that my comp is not authorized. how do i authorize it?

    Follow the directions here:
    https://discussions.apple.com/docs/DOC-3141

Maybe you are looking for