Resolution Center - 10.1: Apps must comply with all terms and conditions explained in the Apple iPhone Human Interface Guidelines and the Apple iPad Human Interface Guidelines

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • Resolution Center - 10.1: Apps must comply with all terms and conditions explained in the Apple iPhone Human Interface Guidelines and the Apple iPad Human Interface Guidelines

    Hallo Leute :) ,
    bin neu hier in diesem Forum und stell auch direkt mal meine erste Frage ;)
    Und zwar komm ich gerade nicht mehr weiter. Ich habe eine iPad App hochgeladen, jetzt wurde diese aber schon wieder abgelehnt und zwar aus Folgendem Grund:

    Reasons for Rejection:
    • 10.1: Apps must comply with all terms and conditions explained in the Apple iPhone Human Interface Guidelines and the Apple iPad Human Interface Guidelines



    Mar 19, 2012 02:28 PM. From Apple.10.1

    We found that your app still does not comply with the Apple iOS Human Interface Guidelines, as required by the App Store Review Guidelines.

    Specifically, we noticed your app still only supported the top up variant of the portrait orientation, but not the bottom up variation.

    While supporting both variants of both orientations, each with unique launch images, provides the best user experience and is recommended, we understand there are certain applications that must run in the portrait orientation only. In this case, it would be appropriate to support both variants of that orientation in your application, e.g., Home button up and down.

    Addressing this issue typically requires only a simple and straightforward code modification. However, if you require assistance, theApple Developer Support Team is available to provide code-level assistance.

    For more information, please review the Aim to Support All Orientations section of the iOS Human Interface Guidelines.

    Ich weiß echt nicht wie ich das Problem lösen kann und hoffe jemand von euch kann mir da weiter helfen. :)

    Gruß Marcel
  • Danke für die schnelle Antwort, aber das hab ich auch verstanden ;)

    Und dachte, dass das Problem dann damit behoben sei:

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation

    {

    // Return YES for supported orientations

    return (interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown);

    }




    war aber nicht der Fall, da die App danach wieder abgewiesen wurde :huh:
  • lol. So hast du ja wieder nur eine Portrait-Orientierung.

    So sollte es aussehen:

    Quellcode

    1. return UIInterfaceOrientationIsPortrait(interfaceOrientation);

    Und natürlich in der Info.plist UIInterfaceOrientationPortrait und UIInterfaceOrientationPortraitUpsideDown zu den unterstützten Launch-Orientierungen hinzufügen und Launch Image(s) nicht vergessen.
  • Nein, Mann. Lies doch einmal, was man dir geschrieben hat oder gebe es zur Not bei Google Übersetzer ein.

    we understand there are certain applications that must run in the portrait orientation only. In this case, it would be appropriate to support both variants of that orientation in your application, e.g., Home button up and down.