IPhone : How to programmatically launch iphone twitter settings page in device from app in ios 8 and ios 7

on Wednesday, February 25, 2015

I want to launch twitter account settings page in iphone from the app with ios 7 & 8. I tried and able to launch settings page(not twitter settings page) using below code in ios 8



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


Please let me know any other solutions are their to launch in ios 7 and ios 8 twitter settings page


0 comments:

Post a Comment