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

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

Merged
merged 4 commits into from Sep 11, 2014
Merged

Conversation

jonalter
Copy link
Contributor

benbahrenburg and others added 4 commits September 4, 2014 09:06
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');
 }
}

~~~
…to TC-4653

Conflicts:
	apidoc/Titanium/App/iOS/iOS.yml
@jonalter
Copy link
Contributor Author

CR & FT pass

jonalter added a commit that referenced this pull request Sep 11, 2014
TC-4653 : Add access to iOS App Setting URL
@jonalter jonalter merged commit 9d8fb0a into tidev:master Sep 11, 2014
@jonalter jonalter deleted the TC-4653 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