Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BACKPORT: TC-4653 : Add access to iOS App Setting URL #6061

Merged
merged 3 commits into from Sep 11, 2014

Conversation

jonalter
Copy link
Contributor

benbahrenburg and others added 3 commits September 11, 2014 13:04
Add access to the iOS8 UIApplicationOpenSettingsURLString. This allows the developer to launch directly into the iOS8 App Settings Screen using Ti.Platform.canOpenURL.

For example:

~~~
var settingsURL = Ti.App.iOS.ApplicationOpenSettingsURL;
if(settingsURL!=undefined){
	if(Ti.Platform.canOpenURL(settingsURL)){
		Ti.Platform.openURL(settingsURL);
	}else{
 	alert('cannot open URL');
 }
}

~~~
@jonalter
Copy link
Contributor Author

CR & FT pass

jonalter added a commit that referenced this pull request Sep 11, 2014
BACKPORT: TC-4653 : Add access to iOS App Setting URL
@jonalter jonalter merged commit 3dbdc2b into tidev:3_4_X Sep 11, 2014
@jonalter jonalter deleted the TC-4653-3_4_X branch September 11, 2014 20:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants