How Could I know before purchasing an application that it'll suit my iphone

How could I know which IOS my iphone is currently using..??
And how could I know before purchasing an application that it'll suit my iphone..?

On your phone: Settings>General>About>Version...your iOS version is listed here. Every app's discription details the iOS requirements to use the app.

Similar Messages

  • How Could I Know the Servers to Use on iTunes Enabled on my iPhone?

    I am claming respect the servers to use in my iphone 3G. It,s very hardly using
    without exact valour. I could not download iTunes on my iPhone...Could you help
    me about it?
    Back response at any time.
    ([email protected])
    Thanks.

    Sounds like you need a manual.
    Get one in English here: http://manuals.info.apple.com/enUS/iPhone_UserGuide.pdf
    Get one in French here: http://manuals.info.apple.com/frFR/iPhone_Guide_de_lutilisateur.pdf
    Get one in Spanish here: http://manuals.info.apple.com/esES/iPod_touch_3.0_Manual_delusuario.pdf
    Or go here to find one in your home language: http://www.apple.com/support/country/?dest=manuals

  • HT1727 How do I know - BEFORE I purchase a song - whether I'm getting the "Plus" version or the regular DRM-protected version?

    The title pretty much says it all, but I'll say it again: how do I know, before I purchase a song, whether I'm getting the free-and-clear Plus version or just the basic DRM-protected version?

    If that's true (and I'm not saying it's not), then why do they still refer to "DRM-protected music" in their online help (at http://support.apple.com/kb/HT1727) after 4 years of not selling any DRM-protected music?  Was it just an oversight on their part, to not update the support page or at least to put an explanation on that page similar to what you provided?

  • How could I know if my applications use HRMS?

    Hi,
    How could I know if my applications use HRMS? Is HRI (Human Resources Intelligence) the same thing as HRMS? Could anybody tell me how could I find the aliases for all the products available (not neccesarily registered) in Oracle Applications?
    thanks,
    Paul

    you can find the complete details of how to find the list of products installed in the following thread
    Query for Appliation Products Installed
    Hope this helps
    Regards
    Ramesh Kumar S

  • How could i know my iphone 5c warranty provided by the carrier or the apple it self?

    How could i know my iphone 5c warranty provided by the carrier or the apple it self?

    Bcoz im having the problem regarding the network service. My phone shows No Service and keep on searching for network. Before, i use 'android' phone and theres no issue on coverage problem at the same place. Compare to the other iphone, theres no problem with the same network which shows 2 or 3 bars. Mine is totally 'No Service'.So, i changed my sim to a new sim, but still the problem happened. I started to restore my phone and nothing changed. Is that problem cause by the antenna of the phone? I bought my iphone at normal handphone shop. Since the problem occur, I sent my phone to the Apple Authorised Resselers for the warranty claim. But sadly they told me the warranty provided by the carrier although i didnt buy it through the carrier. So i sent it to the carrier to claim warranty and they adviced me that it will takes 14 working days. They told me that they will fix it by repair my iphone. Will i get 1 to 1 exchage for the warranty just because of that problem? Apple, please help me coz its the first time im using ios phone.

  • How to search ebooks in iTunes if I only know ISBN of one book? How could I know its iTunes book'ID from the isbn?

    Dear community members,
    I'm new here. I have a question about searching ebooks in itunes search API.
    If I know ISBN of one book, either 10-digit ISBN or 13-digit ISBN, how could I know its ebook ID in itunes store?
    In other words, is there any rule that I could convert regular ISBNs to ebook IDs? Or where I could find the reference?
    Thank you.

    Try searching Amazon or Barnes & Noble or your local library, if they have an online search, for the ISBN. That will give you the title of the book so you can then search the iBooks store. Or just buy the book from Amazon or B&N as a Kindle or Nook book; both have viewers for Windows and Mac as well as iOS devices.
    Regards.

  • How can I know the version of Application Server Java Virtual Machine

    How can I know the version of Application Server Java Virtual Machine?
    Thanks a lot.

    Thats easy. Your jdk/jre are located in the App Server home directory. Just run the java command under the jdk directory with the "-version" switch and it will provide you with detailed information about your VM.
    For example if you're doing it at command prompt it will be something like
    java -versionI hope this will be useful to you.
    Regards,
    Wasif

  • How can I know the purchase date of my notebook?

    Hello guys
    I bought a Toshiba notebook from Extra Company @ Jeddah, Saudia Arabia
    & I want to know how can I know the Purchase Date Of it because I missed the payment bill & when I register my notebook Toshiba web site it asks me about the Purchase Date.
    Please help me
    Thanks a lot
    Bye

    Dont think you can find out the date of purchase!
    Where should know this without a payment bills or sales checks.
    What you can do is to find out when the notebook was registered on the Toshiba page.
    [Toshiba Warranty Lookup |http://computers2.toshiba.co.uk/toshiba/formsv3.nsf/WarrantyEntitlementLookup?OpenForm]

  • How could I know which table the synonym points to now?

    I have two tables with the same structure, TableA and TableB
    I create a synonym which points to TableA. In some senario, the synonym should be switched to point to the other table.
    How could I know which table the synonym points to right now? So that I can switch the synonym to the other table.
    Thanks a lot!!!!!!

    How could I know which table the synonym points to right nowSee all_synonyms view.
    So that I can switch the synonym to the other tableNot without drop synonym. You need to drop and recreate the synonym to point to the new table.
    Nicolas.

  • How could I know:WHO IS CALLING ME?

    let's assume that, there are three classes: class A , class B and class C.in class C there is one method :println(String msg).And there is one method: method_A in class A,method_B in class B.
    class A
    &nbsp&nbsp...
    &nbsp&nbsp public void method_A()
    &nbsp&nbsp {
    &nbsp&nbsp&nbsp&nbsp C.println("I am in method_A of classA");
    &nbsp&nbsp&nbsp&nbsp ...
    &nbsp&nbsp }
    class B
    &nbsp&nbsp...
    &nbsp&nbsp public void method_B()
    &nbsp&nbsp {
    &nbsp&nbsp&nbsp&nbsp C.println("I am in method_B of classB");
    &nbsp&nbsp&nbsp&nbsp ...
    &nbsp&nbsp }
    class C
    &nbsp&nbsp...
    &nbsp&nbsp public static void println(String msg)
    &nbsp&nbsp {
    &nbsp&nbsp&nbsp&nbsp if (DebuggingOn)
    &nbsp&nbsp&nbsp&nbsp {
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp System.out.println("Called from Class:"+getCallerName() );
    &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp System.out.println(msg);
    &nbsp&nbsp&nbsp&nbsp }
    &nbsp&nbsp }
    &nbsp&nbsp private String getCallerName()
    &nbsp&nbsp {
    &nbsp&nbsp //how to implement this?
    &nbsp&nbsp }
    in class C,when method println(String msg) being executed,how could I know who is calling me(println(String msg))?

    I am not sure exactly what you want, is this supposed to be polly morphism so that both classes can be called by class C and they will tell what they are. fi so this code will work
    class top {
       public void method();
    class A extends top {
       public void method() {
          c.println("I am in method of class A", this);
       public String toString() {
          return " A";
    class B extends top {
       public void method() {
          C.println("I am in method of class B", this);
       public String toString() {
          return " B";
    class C {
       public static void println(String msg, top t)
         if (DebuggingOn)
           System.out.println("Called from Class:"+ t );
           System.out.println(msg);
    }If called from class A will print out "Classed from Class: A" then the message and if called from Class B will print out "Classed from Class: B" then the message

  • How could I know my kernel is 32 or 64 bit. I know there is a parameter

    Hello
    How could I know my kernel is 32 or 64 bit. I know there is a parameter. But which
    Thank you in advance

    Do you mean that you want to find out programmatically?  If not, it should be as easy as checking the properties under "My Computer".
    Regards,
    RIch Heilman

  • How could I know the changes

    Respected,
           How could I know if some changes are made in configuration part  and by which user it has been done .Is their any path or transaction path to have a look at the changes   .
    THASNKS AND REGARDS
    AVANISH GULATEE

    Hi ,
    You need to aks the basis team to activate "change log" to view the changes done . Please note that activating the change log requires a lot of pressure on memomry usage and basis team have to take a final call on that. But once done , all the changes can be viewed using what Kahled had replied .
    Regards .

  • The seriale number is not patent how could i know my phone is original?

    the seriale number is not patent how could i know my phone is original?

    Where did you buy the iPhone ,at the market ?

  • How could I know my PDK version

    hello,
    How could I know my PDK version installed?
    I can4t find it anywhere
    Thanks

    Hello,
    In this document there are a lot of references to different jpdk versions, but there is no point saying 'this version is...'
    The Revision History is at the bottom of the page, I suppose 'my' jdpk version is the newest one, JPDK 3.0.9.0.1 :::
    December 29, 2000
    January 25, 2001. Updated for JPDK v1.3
    February 2, 2001. Updated for JPDK v1.3
    March 15, 2001. Updated for JPDK v1.4
    April 14, 2001. Updated for JPDK v1.5
    April 27, 2001. Updated to rename JPDK 1.5 to JPDK 3.0.9.0.0
    June 14, 2001. Updated for JPDK 3.0.9.0.1 and corrected source code paths for samples
    Am I wrong?
    Thanks

  • How could i burn my purchased songs in itune  on a cd ?

    how could i burn my purchased songs in itune to a cd

    Hi zafarur,
    Great question, and welcome to Apple Support Communities.
    The following resources may provide the information you need to start burning your purchased music to CDs:
    iTunes 11 for Windows: Disc burning overview
    http://support.apple.com/kb/PH12347
    iTunes 11 for Windows: Create your own CDs and DVDs
    http://support.apple.com/kb/PH12348
    Cheers,
    Matt M.

Maybe you are looking for