7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

アプリからSettingsのアプリに入ること

Last updated at Posted at 2014-10-08

アプリの中で、アプリからSettingsのアプリに入ることができるかもしれない。
この機能について、少し捜査しました。

1.iOS 5.0 - iOS 5.0.1 ができる:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];

 http://stackoverflow.com/questions/9092142/ios-uialertview-button-to-go-to-setting-app

2.iOS 6 - iOS 7 ができないです、でも InAppSettingKit というlibがあります:

http://inappsettingskit.com/

http://www.alexcurylo.com/blog/2011/11/04/settings-urls/

3.iOS 8 ができる、でもSystemのSettingsじゃなくて、アプリのSettingsです:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?