Is Apple app reject my app if my app redirected to settings page?

424 views Asked by At

If my app have a button and it will redirected to the iPhone settings page then is apple reject my app from review ?

if any one have answer or any apple support link which have written this rejection reason then please provide me.

3

There are 3 answers

1
Santu C On BEST ANSWER

No , there have no restriction if it's running iOS 8 and above -

- (void)openSettings
{
  if ( SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"8.0") ) {

    BOOL canOpenSettings = (&UIApplicationOpenSettingsURLString != NULL);
    if (canOpenSettings) {
        NSURL *url = [NSURL URLWithString:UIApplicationOpenSettingsURLString];
        [[UIApplication sharedApplication] openURL:url];
    }
 }
}
0
nburk On

No you will not get rejecte ford doing so! Keep in mind that deep linking into the settings is only possible since iOS 8, read this answer for more info.

0
dogsgod On

No, that's fine. Here's how to do it.