Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7617415
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T03:08:45+00:00 2026-05-31T03:08:45+00:00

We found that your app does not comply with the Apple iOS Human Interface

  • 0

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

Specifically, we noticed your app 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,
the Apple 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.

Could anyone point me some code for troubleshooting that? The main app was all fine about that but now on the update my app was rejected for the second time for the same reason.

Here is my code for that

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);}

@end

But it’s npt working

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T03:08:46+00:00Added an answer on May 31, 2026 at 3:08 am

    since you said it’s an universal app everything becomes clear.

    On iPads you have to support all interface orientations, especially all 180 degree variants. So if you support portrait you have to support portrait upside down too. If you support landscape left you have to support landscape right too.

    On iPhones there is no need to support portrait upside down. That’s the default apple puts into their UIViewController templates.

    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
    {
        if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) {
            // on iPad support all orientations
            return YES;
        } else {
            // on iPhone/iPod support all orientations except Portrait Upside Down
            return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
        }
        return NO;
    }
    

    put that into every view controller in your app.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

From Apple: 9.4 We found that your app does not use the HTTP Live
I found that some result of MBRContains(g1,g2) and other functions seems not right to
Recently, an app was released on the AppStore that secretly allowed wifi-tethering from your
I am trying to make an app that can shutdown/reboot your phone at the
While profiling my application I found that DateTime.FromFileTime(long fileTime) is slow. Does anyone know
I found an article on About.com that tells you how you can manage your
I found that Wix v3 uses a tool (heat.exe) to harvest information into WiX
I found that SO put the search input inside a form tag, and i
I found that using Smarty with PHP, sometimes extra time will need to be
I found that I have to perform a swap in python and I write

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.