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