Cannot scroll in update screen for iOS 6

Scrolling doesn't work in update screen. If several apps have updates and you try to check what's new in each app, you cannot scroll down.

- 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.
- Power off and then back on your router
.- Reset network settings: Settings>General>Reset>Reset Network Settings
- Try when connected to another network
- Update via iTunes on a computer.

Similar Messages

  • Cannot connect to update server for IOS 5.1

    I keep getting cannot conect to updade server when trying to upgrade my  iPad, my iPhone and my Apple TV.  Have switched all devices off and on.  Rebooted my router but still no luck.  Had this problem for 3 days now. Anyone any ideas please.

    This has solved loads of people who have this issue and have used an alternate DNS setting.  Below are instructions for both iPhone OTA and on you Mac
    If you are getting the error message "Unable to check for update" when you try an OTA (over the air update)
    Change DNS Servers
    Settings -> Wi-Fi
    Click the blue arrow on your connected network
    Delete everything in DNS and replace it with 208.67.222.222, 208.67.220.220
    Try again
    If this works, you will probably want to remove the WiFi network using "Forget This Network" and then reconnect to it to get your original DNS servers back. Alternatively, make a note of the original DNS servers before deleting them and replace it after you are done.
    If you are getting the error message "Unable to check for update" when you try through iTunes
    On your Mac
    Choose Apple menu > System Preferences, and then click Network.
    Select the network connection service you want to use (such as Wi-Fi or Ethernet, unless you named it something else) from the list, and then click Advanced.
    Click DNS, and then click Add at the bottom of the DNS Servers list. Enter the IPv4 address for the DNS server.
    You can use OpenDNS
    208.67.222.222
    208.67.220.220
    or
    You can Google Public DNS if you want
    8.8.8.8
    8.8.4.4
    I have chaged my DNS settings on my router so now all my network devices use OpenDNS as their DNS.

  • I got an update message for iOS 7 but can't download as it keeps shutting down and the wheel goes so slow that you can hardly see it moving and says it will take 5-6 hours to download approx. 64 megabytes

    I got an update message for iOS 7 but can't download as it keeps shutting down and the wheel goes so slow that you can hardly see it moving and says it will take 5-6 hours to download approx. 64 megabytes

    Which way are you trying to update - iTunes or WiFi in the iPad settings? Try switching from one method to the other method. If you don't have a computer and need to use WiFi, try closing all apps and then reboot your iPad and try again.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of all of the apps in the recents tray. Tap the home button or anywhere above the task bar when you are done.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    It wouldn't hurt to reboot your router either by unplugging it from power for about 30 seconds, plug it back in, let it fully start up and then try to update again.

  • Cannot find lib when packaging for iOS

    You can see the same question on StackOverflow here:
    http://stackoverflow.com/questions/11547515/cannot-find-lib-when-packaging-for-ios
    Hi,
    I am developping an Air Native Extension (ANE) in order to be able to use the burstly(1) ads on mobile devices.
    As for my setup, I am using the FlashDevelop 4.0.4(2) and Adobe Air 3.3 (3). I'm using Flex 4.6.0 SDK. The project is setup on Windows7.
    In order to work on iOS devices, Burstly requires a number of frameworks and librares (4)
    I managed to write and compile the .a library for iOS. I also have the interface (actionscript code) that will be shared for Android and iOS compiled into a swc and a librairy.swf. All of this is successfully packaged into a .ane which is included in my project.
    When compiling a .a library on MacOS, all the framework and library used don't seems to be packaged in the ".a". This is why I had to use Air 3.3, for the -platformsdk option(5).
    Since I work on Windows, I followed the instruction in this post to get the iOS SDK (6).
    Following (4) and (5), I made a platformConfig.xml file like this, which is packaged in the .ane
        <platform xmlns="http://ns.adobe.com/air/extension/3.1">
            <sdkVersion>4.2</sdkVersion>
            <linkerOptions>
                <!-- to use the AssetsLibrary framework -->
                <option>-framework AssetsLibrary</option>
                <option>-framework AudioToolbox</option>
                <option>-framework AddressBook</option>
                <option>-framework AVFoundation</option>
                <option>-framework CFNetwork</option>
                <option>-framework CoreLocation</option>
                <option>-framework MapKit</option>
                <option>-framework MediaPlayer</option>
                <option>-framework MessageUI</option>
                <option>-framework OpenAL</option>
                <option>-framework OpenGLES</option>
                <option>-framework QuartzCore</option>
                <option>-framework StoreKit</option>
                <option>-framework SystemConfiguration</option>
                <option>-framework Foundation</option>
                <option>-framework CoreGraphics</option>
                <option>-libsqlite3</option>
                <option>-libxml2</option>
                <option>-libz</option>
            </linkerOptions>
        </platform>
    and this is the line to compile the actuale .ane
        call "%FLEX_SDK%\bin\adt" -package -target ane ../release/burstlyadsextension.ane extension.xml -swc burstlyAds.swc -platform iPhone-ARM library.swf libBurstlyAds.a -platformoptions platformConfig.xml
    Problem arises when I try to package the iOS app with ADT:
        call adt -package -target %TYPE%%TARGET% %OPTIONS% %SIGNING_OPTIONS% "%OUTPUT%" "%APP_XML%" %FILE_OR_DIR% -extdir lib/external/ -platformsdk ../Libraries/iPhoneOS5.0.sdk/
    this happens:
    "ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    frameworks seems to be added fine, but the dylib are not. I tried to add the line:
        <option>-L usr/lib/</option>
    before including the lib, but I got this error instead:
    "ld: warning: directory not found for option '-Lusr/lib/'
    ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    I tried to use the full path, other relative path, but no matter what path I put in the option, I always get a "warning: directory not found for option". Even "<option>-L ../</option>" give me this warning. The only thing that seems to work is "<option>-L /../</option>", but my .dylib obviousle are not there.
    So my questions are: What did I do wrong? Any idead what else I could try? Even an explanation as to why it is not working would be helpful!
    Links:
    #1: http://support.burstly.com/
    #2: http://www.flashdevelop.org/
    #3: http://get.adobe.com/fr/air/        //Sorry, my OS is in french
    #4: http://support.burstly.com/kb/ios/required-compiler-flags-frameworks
    #5: http://blogs.adobe.com/rajorshi/2011/11/16/ios5-support-for-airusing-external-sdks-to-pack age-apps/
    #6: http://blogs.adobe.com/airodynamics/2012/05/18/using-platformsdk-for-ios-on-windows/

    Thanks a lot, that took care of the
    "ld: library not found for -libsqlite3
    Compilation failed while executing : ld64"
    But now, I'm stuck with this error instead:
    ld: warning: -ios_version_min not specificed, assuming 4.0
    Undefined symbols for architecture armv7:
      "_ADBannerContentSizeIdentifier480x32", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor supportedSizes] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_ADBannerView", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_EKEventStore", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAView.o)
      "_OBJC_CLASS_$_FlurryAnalytics", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_flurry_Adaptor.o)
      "_OBJC_CLASS_$_CMMotionManager", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAJavascriptBridge.o)
      "_ADBannerContentSizeIdentifier320x50", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor supportedSizes] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
          -[Burstly_iad_Adaptor makeSizesSetWithArray:] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_MedialetsShouldLogDebug", referenced from:
          -[MedialetsAdServer sendAppPixelWithURL:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer adFitsSlot:adID:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdFromList:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer isAdValidForSlot:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdForAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer startCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer processReceivedData:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
      "_OBJC_CLASS_$_EKEvent", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyORMMAView.o)
      "_ADBannerContentSizeIdentifierPortrait", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_OBJC_CLASS_$_CTTelephonyNetworkInfo", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(BurstlyUtils.o)
      "_ADBannerContentSizeIdentifierLandscape", referenced from:
          +[Burstly_iad_Adaptor initializeContentSizeIdentifiers] in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
      "_MedialetsShouldLogInternal", referenced from:
          -[MedialetsAdServer init] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer qualifiedAdsFromList:forAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer qualifiedAd:foradSlotKey:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdFromList:forTargetKey:keywords:andBlockKeywords:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer nextAdForAdView:] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer attemptCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
          -[MedialetsAdServer startCacheLoad] in libcom.bhvr.burstlyads.a(MedialetsAdServer.o)
      "_OBJC_CLASS_$_FlurryAppCircle", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_flurry_Adaptor.o)
      "_OBJC_CLASS_$_ADInterstitialAd", referenced from:
          objc-class-ref in libcom.bhvr.burstlyads.a(Burstly_iad_Adaptor.o)
    ld: symbol(s) not found for architecture armv7
    Compilation failed while executing : ld64
    Which is the same error as when I did not include any library at all.
    Any other insight?

  • Possible to create local "update server" for iOS and apps?

    I use the software update server in OSX Server to locally cache updates, which speeds them up dramatically.
    Unfortunately, the app store is still fairly slow.
    Does anyone know if Apple has implemented the same sort of caching or update server for iOS devices? I think I read that there's a semi-transparent cache if you have an AirPort Extreme in your path to the Internet, but I don't and really couldn't even if I wanted to...
    Thanks.

    If apple would get thier crap together it is supposed to be there already. It is really ******* me off that there little to no effort from apple to get all of this working PRE OS release. Had this worked properly before the OS update schools across the country would probably not been brought to thier knees. I ended up having to block the entier apple domain to keep District Office online.
    Here is apples promise at the iOS launch.
    http://www.apple.com/ios/business/
    Caching Server 2 supports iOS 7.
    By caching purchased content and software updates on a local Mac running OS X Mavericks Server, Caching Server 2 speeds up the download and delivery of content through the App Store, Mac App Store, iTunes Store and iBookstore. Your users get faster downloads of content and updates to their iOS devices directly over your corporate network.

  • HT201365 the activation screen(set up screen) for ios 5 and 6 kinda looks better than ios 7 and 8

    the activation screen(set up screen) for ios 5 and 6 kinda looks better than ios 7 and 8

    So what? Do you want a prize for posting such an illuminating comment?

  • What can I do?  I cannot donwload or update apps with ios 8.2 for iphnoe 4s

    I cannot donwload or update apps in my iphnoe 4s. I have ios 8.2 What can I do?

    Well for starters you can provide some details as to exactly what the problem is and what happens when you try.  We're not mind readers here.

  • PDF documents that cannot be edited in Reader for IOS

    Hello,
    I've been trying to edit (highlight and add comments) a PDF document on my iPad, but the app is not cooperating with me.
    I was able to edit it with Adobe Reader on my PC, but the same file cannot be edited with the ios app.  I tried some other pdfs with the app, and in some, the editing options would work, but in others, they would not.
    Is there any way that I can modify a pdf when it behaves this way, so that it will let me edit it on my iPad?
    Thanks!

    aboutrainbows,
    Thank you for sharing the PDF document.
    I took a look at the PDF document and found out that this problem occurs with certain types of PDF documents (but not all PDF documents).  Only text markup annotations (Highlight, Strikeout, and Underline) are affected by the defect in Adobe Reader for iOS.
    The good news is that we already have a fix for it.  The fix will be verified by our Quality Engineering team and included in a future release of Adobe Reader for iOS.  Unfortunately, I am not able to provide the release date for Adobe Reader for iOS.
    We apologize for the inconvenience.
    Please let us know if you have further questions.

  • Cannot find font in numbers for ios

    I created a spreadsheet in numbers on my mac and just entered one number in one cell with the font helvetica.
    I then opened the spreadsheet on my ipad with no problems. I then closed the spreadsheet on my ipad and reopened it on my mac.
    I then went to a neighboring cell and entered another number in the font calibri and saved the spreadsheet to the cloud.
    When I opened the spreadsheet on my ipad I get the "Some changes were made to your spreadsheet" message saying the font calibri is missing.
    Of ourse I can open the spreadsheet by clicking on open and the calibri text is converted to helvetica(calibri).
    I closed the spreadsheet on the ipad and reopened it on the mac and changed the calibri text to helvetica.
    No matter what I do, including deleting the column that the calibri cell was in, I cannot get rid of the spreadsheet details and error message. What can I do to be able to open a spreadsheet without getting the missing font message?
    Also, I have a spreadsheet with 10 tabs on it that does the same thing. Is there any way to find out which cells have calibri in them.

    Hi feaco,
    I have a similar issue with a spreadsheet that is mostly used on iOS 7, no iCloud. Since there are other missing  fonts I ignore the issue. Sure would like to turn that warning off.
    I think this is an iWork for iOS issue. You may have better luck on that forum.
    quinn

  • How to update CFBundleVersion for iOS?

    How do you update the CFBundleVersion number in Flash Builder for iOS app distributions? Is there no way to do this?

    Answering my own question in case anyone else has this issue.
    If you update the <versionNumber> in your app.XML file, it has an effect on CFBundleVersion.
    In my case, my <versionNumber> was 0.0.554. This caused the CFBundleVersion to be automatically set to 0.0.99 and I didn't know how to manually change the CFBundleVersion.
    By changing <versionNumber> to 0.1.554, this caused the CFBundleVersion to be automatically set to 0.1.99.  This change finally allowed me to update my iOS app.

  • Best update method for iOS: iTunes or built in updater

    What's the best method to update iOS software: iTunes (which downloads the whole thing) or the built in updater in the iOS? I've only used iTunes so far, but you always seem to have go through entering some info upon restart..

    Either one works fine. If you use Software Update in your iPhone then the system is upgraded in place. But be sure you have a good Internet connection and you have your phone connected to a charger for best results.

  • ITunes 10.6.1 Update button for iOS update does not work (a bug)

    iTunes 10.6.1 Update button on iOS device Summary / Version page does not update devices. It only checks the iTunes version!
    With iTunes 10.6.1, connect an iPad, iPhone, iPod running pre-6 iOS version.
    On iPad Summary / Version page, next to  [Update] button the message says:
    "A newer version of the iPad software is available (version 6.0). To update your iPad with the latest software, click Update."
    However, clicking the [Update] button will not start update iPad. Instead it gives you a dialog saying:
    "This version of iTunes (10.6.1) is the current version".
    Obviously it should start updating the i-device there but instead just goes and check the iTunes version ?!?
    A Bug!
    What's really annoying in this bug is that it's the only way to update pre iOS 5.x devices, which is now impossible!
    Apple should get this fixed asap!
    Anyone found any workarounds?
    [Edit]: There seems to be another discussion of this issue already:
    https://discussions.apple.com/message/19671173#19671173

    Just forgot to add, yes, I know there's iTunes 10.7 but it's only available on Snow Leopard and higher.
    The machine in question is an old macbook, running Leopard (10.5.8), that it will propably never get upgraded.
    Since most  my older i-devices were initially synced with that particular machine, I'll be now stuck with iOS updates, without loosing content.

  • IPad mini stuck at reboot screen for ios 8.1.2 update

    My moms iPad mini is updating to ios 8.1.2 and it is currently stuck at this point
    (___________________ ) <- Small space. It has been sitting there for like an hour and a half. What do I do? :/ I just wanna play some VainGlory

    Reset the device:
    Device Reset (won't affect settings/data/music/apps/etc)
    1. Press and hold (& continue to hold) BOTH the Sleep/Wake button & the Home button.
    2. Continue to hold BOTH (ignoring any other messages that may show) until you see the Apple logo on the screen.
    3. Release BOTH buttons when you see the Apple logo and allow the device to boot normally.

  • Scroll bar visible but not able to scroll in custom screen for IW21

    Hi,
    We are using custom tab (screen exit) in transaction for creating notifications (TCode IW21). Two subscreens are configured to be embedded in the tab, combined area of which is exceeding screen size vertically. The scroll bar is visible in the tab but is not able to scroll using mouse scroll, but can be dragged up and down.
    Does anyone know how to make it scrollable or make the scroll bar visible at application level (not in tab) and make it working?
    Thank you,
    Deepak

    Hello,
    Would you please implement the Methods GET_DATA to get th data from Databas to screen fields and SET_dATA to update thedata from custom screen fields to Data base table in u r case LFB1.
    Regards,

  • Updated Safari for iOS 5 doesnt have tabs

    Hey i just downloaded the iOS 5 update for my iPhone 4 and in my safari app there is no tabbed browsing like there is supposed to be.  It is still working how it used to on the old operating system with opening a new page.  I checked the settings and there isnt anything to change it.  help!

    Tabs are for iPad only.
    Not enough screen realestate on small iPhone display.

Maybe you are looking for