Memory storage used in ipad 4 is not displayed correctly?

I have ipad 4 32GB. In General->Usage->Storage, used storage memory is 5.8Gb and remaining avail. storage for all appps installed is 22.1 GB. But actual  storage capacity of all the apps is 4.41 GB(my manual calculation as per displayed on screen). If I take difference of all apps storge(4.41GB) and actual storage(5.8GB), it comes to 1.4GB. Please let me know where 1.4GB is used up on my ipad. I tried to search all the available options in ipad settings, but didn't got anything. Please help...

The iOS operating system uses some of the storage.
How much space is used by your Other? You may be able to reduce.
How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
http://tinyurl.com/85w6xwn
With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5/6, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
 Cheers, Tom

Similar Messages

  • IPad air screen not displaying correctly

    My iPad Air screen has recently started displaying with a pink hue in two of the corners, showing as a medium sized oval in one corner and a small circle in the other. There are also some vertical pink streaks that are less marked. It's really noticeable when the screen is displaying a white background. The only recent changes I have made is downloading the new IOS 8 update. There has been no trauma or damage to the iPad. It is still covered under the 1 year limited warranty. is there any way to fix this in my own?! Thank you!

    Hello there katelynlc,
    It sounds like you have some graphical anomolies on your screen that have a pink hue. If it is a software issue it will be resolvable by either first resetting the iPad:
    Turn your iOS device off and on (restart) and reset
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Or backing up and restoring your iPad as a new device:
    iOS: How to back up your data and set up your device as a new device
    If restoring as new does resolve it, restore your backup and verify it still works. 
    If not, then the iPad will need service:
    iPad Repair and Service - Apple Support
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Screen not displayed correctly using InteractiveViewer

    I have created a report that prompts the User for Start and End dates.  When the Prompt dialogue box is displayed using interactiveViewer the images are not displayed correctly.
    Does anybody have a fix for this problem ??
    Example attached.
    Ron Smith
    DBA

    My guess is that the toolbars don't show up when you view the reports either.
    There should be a virtual directory called 'crystalreportviewers' on your webserver. This is where you will find all the images supplied by the viewer.
    Right click on the image that is having problems and select properties.  This should give you location of the viewer.
    You should be able to trouble shoot this way be comparing the actual path with the real path of the missing images.
    Hopefully this will help.
    <a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/robhorne</a>

  • Some Websites do not display correctly (i.e. Facebook & Mozilla Page)

    Recently when I visit Facebook and the Mozilla Page on my Desktop Computer (I am writing this on my laptop because this website does not function on my PC) using Firefox, the pages do not display correctly. Instead of the Facebook page appearing in it's usual blue-coloured format it shows as lines of text (not HTML code, but just lines of text, such as "Connect with friends..." in a different font than it should, its all black and white, no colour). Also the top of the screen has written "Facebook Logo" in blue underlined italics instead of the actual logo.
    Does anyone know what may be causing this problem? If so, could you provide me with a solution? I have already tried several support topics (i.e. clearing cache, cookies etc.) but this does not help.
    Please tell me if you require more detail or wish for me to elaborate/describe my issue in an alternate way.
    Thank you very much.

    Here is a screenshot.

  • Scientific fluorescence figures are not displayed correctly on iPad

    I use the iPad 1 for reading scientific papers, and I figured out that some fluorescence figures are not displayed correctly. The colours are not correctly distinguished, even some colours are completely missing. Is this a limitation of the iPad display or the current version of iOS.
    I am really disappointed. So, is there any solution?
    Many thanks.
    On MacBook Pro
    On iPad 1

    I am woundering if anyone can suggest any solution? Thank you.

  • Downloaded a book from itunes, works on iphone6, but will not open on ipad air. "not formatted correctly ". Any ideas ?

    Downloaded a book from itunes, works on iphone6, but will not open on ipad air. "not formatted correctly ". Any ideas ?

    Hello colinOxford0917,
    I'm sorry to hear you are having these issues with iBooks on your devices. If you continue to have issues opening the book in question on your iPad Air due to a format error, you may want to try deleting the copy on your iPad, then redownloading it directly to your iPad from the iBook Store. You may find the information and steps outlined in the following articles helpful:
    Frequently asked questions about iBooks - Apple Support
    iBooks: Tips for managing your iBooks library and storage on iOS devices - Apple Support
    Regards,
    - Brenden

  • German Special Characters not displayed correctly in RTF  using code

    Hi ,
    In my code we are using webdynpro method
    WDResourceFactory.createResource(
    byte[] data, String resourceName,WDWebResourceType
    Type)
    Here in our code we are implementing this as
    ITemplateElement templateEl = wdContext.currentTemplateElement();
    WDResourceFactory.createResource(
    templateEl.getReportData(),
    reportName.substring(0, reportName.lastIndexOf('.')),
    WDWebResourceType.RTF); reportName.lastIndexOf('.')),
    Here templateEl.getReportData() returns a set of bytes which has some
    german special characters.
    We are generating the Bytes using String.getByes(),Just before
    String text = new String(in);
    collector.putBusinessObject(boName, bo);
    reportDocTemplateParser(collector, text);
    collector.removeBusinessObject(boName);
    String generatedText = collector.generateRTF();
    out = (null != generatedText) ? generatedText.getBytes() : null;
    The out put is the if i am giving a word with german special characters for eg:
    Betriebsübersichten it first gets converted to bytes and then passes through method WDResouseFactory.createResourse(.....) which creates an RTF file and finally in the RTF file it appears as Betriebsbbersichten the special character is not displayed correctly.
    i came to knw that while converting into bytes we have to make it RTF supported encoding.ie for eg generatedText.getBytes('cp1252').i even tried with other charactersets like ISO-8859,cp1253 and so on but none of them worked.
    It would be really great if you could suggest the needful.
    Thanks and Regards
    Neeta

    I soved this by using get_data function of response object. Then converting this into ISO-8859-1 charset.
    See code below.
    DATA :  lv_encoding   TYPE abap_encoding,
              lv_conv       TYPE REF TO cl_abap_conv_in_ce,
              lv_x_string   type xstring.
      lv_x_string = pv_http_client->response->get_data( ).
        lv_encoding = '1100'.
        lv_conv = cl_abap_conv_in_ce=>create(
                              encoding = lv_encoding
                                 input = lv_x_string ).
        lv_conv->read( IMPORTING data = pv_result ).

  • I have created a powerpoint web app in sharepoint 2013 ,i used a ppt in this web app.My ppt image is not displaying correctly in MAC mozilla firefox

    I am facing this problem in MAC OS Mozilla Firefox.It is displaying correctly in other browsers like google chrome and internet explorer in MAC OS,but it is not displaying correctly in Mozilla firefox.
    I already checked the possible reasons like:
    1. Restarted my computer
    2. Clear cookies and cache
    3. Restarted Firefox in Safe Mode
    4. Troubleshoot all plugins
    5. Reinstalled Firefox
    6. Reset Firefox.
    anyone know how to fix this issue.I am waiting for your valuable answers.

    Looking at [http://sharepoint.stackexchange.com/questions/82591/in-powerpoint-web-app-2013-ppt-is-not-displayed-correctly-in-mac-os-mozilla-fire your screen shot] it reminds me of a problem with Flash on the Retina display not using the full area if hardware acceleration of graphics is disabled. See [https://support.mozilla.org/en-US/questions/968863 I'm only getting one quarter of a screen on Flash Player on Firefox] (unsolved).
    Not sure if that's relevant but does the display of the slide change if you make sure that hardware acceleration is enabled? The checkbox is here:
    Firefox menu > Prefences > Advanced
    On the "General" mini-tab, uncheck the box for "Use hardware acceleration when available"
    Note that any changes take effect after you exit and restart Firefox.
    To see whether Firefox actually is using hardware acceleration, you can check the troubleshooting information. Either:
    * Help > Troubleshooting Information
    * type or paste about:support in the address bar and press Enter
    Toward the end, in the Graphics section, look for this row:
    GPU Accelerated Windows
    The number will show a ratio of accelerated to non-accelerated window. If hardware acceleration is disabled, the first number will always be zero.
    By the way, is the SharePoint PPT viewer using Flash, or Silverlight, or another plugin? Typically Firefox will display an icon that looks a bit like a "Lego" block in the address bar showing what plugins are in use in the page.

  • Hello After upgrading iPhoto 9.1.2 when you synchronize the iphone / iphoto ipad events are not copied correctly (this option checked all the photos on itunes).

    Hello
    After upgrading iPhoto 9.1.2 when you synchronize the iphone / iphoto ipad events are not copied correctly (this option checked all the photos on itunes).

    I found this other thread discussing this topic, no fix, I will revert to 9.1.1 from Time Machine and wait for a new update.
    https://discussions.apple.com/thread/3023160?

  • My iPad screen is not displaying apps or app screens.

    Hello,
    My iPad screen is not displaying any apps at all. There are no app screens - it isn't that I am not swiping left. My wallpaper is still showing, and the only actions I can perform is pulling down the notification screen and pulling up the convenience bar. It doesn't lock so I can't restart it from iTunes. What is happening?
    I have an iPad with iOS 8.1.1
    Thanks

    Try a reset. Press and hold both the Home and power buttons until the Apple logo appears. Release both fingers. Wait until your iPad starts on it's own.
    If the apps are still missing  tell Siri to open settings. Then go to general> reset> reset home screen layout.
    Also you can ask Siri to open a app to make sure they are still there.

  • The padlock icon shown when entering secure sites using Firefox 3.x is not displayed using Firefox 4. How can this be restored? Is it indicating another problem?

    The padlock icon shown when entering secure sites using Firefox 3.x is not displayed using Firefox 4.

    It has been changed. Please read this article:
    https://support.mozilla.com/en-US/kb/Site%20Identity%20Button
    You can use this add-on to get the classic icon back:
    https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/

  • I just upgraded to Mavericks and suddenly youtube does not display correctly although other sites work fine. I am using the newest MacBook Air. Any suggestions?

    I just upgraded to Mavericks and suddenly youtube does not display correctly although other sites work fine. I am using the newest MacBook Air. Any suggestions?

    Hi ..
    Open System Preferences > Flash Player then select the Advanced tab.
    Click Delete All under Browsing Data and Settings
    Back to Safari. Press Command + Option + E to empty the Safari cache.
    Quit and relaunch Safari, try a video.

  • Time at home is not displayed correctly using Mexico's timezone

    Hello,
    Time is not displayed correctly at home screen, it is shown at -7 instead of -6 GWT. But it is displayed correctly in Date & time config page. Does anybody knows how to fix it? I had to setup Central time (-6) as a temp workaround, but daylight saving time dates differs from US.
    Thanks
    sbarraza
    BlackBerry Passport

    Try this.
    1. set your time zone to mexico.
    2. turn off set time and date to automatic set.
    3. set the correct date and time.
    Be a Shepard and not an iSheep.

  • Pdf not displayed correctly in preview

    We have a new A) scanner (colortrac Ci40) and when we scan a pdf it is displayed in preview as if it is all wrinkled up.
    Only in prewiew and if imorted in vectorworks. (on both OSX 10.5 and 10.6)
    The same problem appears on a iPad.
    It is not displayed correctly.
    In all other programms I tried it is displayed properly.
    We also have a small a4/a3 scanner from konica minolta and these scans display corectly in preview.
    Is this only a preview problem and should I ignore it?

    Hi there,
    I have a very similar problem: a number of pdf files that I can see perfectly well in Safari/GoogleChrome do NOT show correctly in Preview or ANY iPad app I have (Notability, Adobe, PDF Expertm iAnnotate, Dropbox etc.).
    The problem is that punctuation -- with the expection of periods or bolded text -- does not show properly. For example, commas and quotation marks to not show, and some numbers to not show.
    Moreover, once I have annotated/viewed the problematic file on the IPad and resync to dropbox to view on Mac vis Adobe (which I do with most pdf files with no problems), I get an error message upon reopening the pdf file saying "Cannot extract the embedded font 'FAFWQV+--unknown-2--'. Some characters may not display or print correctly." (the 'quoted' text changes each time). When opening in Preview, no error message appears, though the fole is still lacking punctuation etc.
    Here is a link to one problematic pdf:http://niis.cass.cn/upload/2012/12/d20121201200145301.pdf
    NB: the file is in Mandarin, however I can successfully open/edit/annotate/sync other pdfs using Mandarin font so I'm not sure if the language is related to the problem.
    I would be extremely grateful for some help with this please!
    Thanks!

  • Color gradients not displaying correctly

    I'm having an issue with my color gradients in type and objects not displaying correctly in the content viewer. For the last app I created, I made sure the colors were RGB and that seemed to fix it. With the current app I'm working on, that dosen't seem to fix the issue. Actually, when I test in the viewer on my iPad, it shows the correct gradient in the split second that it's loading the update but then once it's loaded, it goes to a gray white gradient (the correct gradient is from a yellow to a gray; attached a pict for referrence).
    Anyone know why this is happening? Thanks in advance!
    UPDATE: It seems to view fine if I preview the page via the foilo overlay but when I preview the folio, that's when it's no viewing correctly.

    The Color Picker is unreliable for choosing colors based on what you see because it is not color managed while Color panel and Swatches are.
    In your image, the color that you see in the Color Picker is how your monitor displays R=0 G=255 B=0. The color that you see in the Color Panel represents the same values in the file but the color management sends different values to the video card and thus to the monitor to display a color with appearance in the color space selected for the document. In your image this is a CMYK color space which you can check from the Show popup menu at the bottom left of the document window. To check the different values the video card is using, make a screen capture, save the image, open it in Illustrator and measure the color with the eyedropper. The color translation from the values in the file to the video card allows simulation of color spaces other than your monitor's. This simulation is accurate if you have a monitor profile installed in your system that correctly describes how your monitor displays colors. Such profile is created by using a color measuring device and profiling software. If your monitor profile (color space) installed in the system is the same as the color space of the document then there will be no translation (simulation) which in effects shuts down the color management - then the colors in the Color Picker will be the same as in the document. Many people do not bother to get an accurate profile of their monitor and use a generic sRGB profile for that. In such case working in RGB color mode using the sRGB color space (default in the Color Settings) will give the same colors in the Color Picker and the document. This usually is a sign of using a monitor that incorrectly displays colors.

Maybe you are looking for