0

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.

pnuts
  • 58,317
  • 11
  • 87
  • 139
Ashish Thakkar
  • 944
  • 8
  • 27
  • I'm voting to close this question as off-topic because only Apple knows what it will or will not reject. – Caleb Jun 10 '15 at 06:33
  • @AshishThakkar is the situation cleared up for or do you need more info? otherwise don't forget to mark an answer as accepted :) – nburk Jun 11 '15 at 15:25

3 Answers3

1

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.

Community
  • 1
  • 1
nburk
  • 22,409
  • 18
  • 87
  • 132
1

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

dogsgod
  • 6,267
  • 6
  • 25
  • 53
1

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];
    }
 }
}
Santu C
  • 2,644
  • 2
  • 12
  • 20
  • Can we confirm the answer for latest version. Because one of my friend's app got rejected due to this and it was targeted at ios 10 and above. – Amber K Nov 20 '18 at 06:35