1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| //定位服务设置界面 NSURL * url = [NSURL URLWithString:@"prefs:root=LOCATION_SERVICES"]; if ([[UIApplication sharedApplication] canOpenURL:url]) { [[UIApplication sharedApplication] openURL:url]; }
//定位服务设置界面 @"prefs:root=LOCATION_SERVICES" //GameCenter设置界面 @"prefs:root=GAME_CENTER" //WIFI设置界面 @"prefs:root=WIFI" //通知设置界面 @"prefs:root=NOTIFICATIONS_ID" //蓝牙设置界面 @"prefs:root=Bluetooth" //iCloud设置界面 @"prefs:root=CASTLE"
//调用系统邮件发邮件 - (void)gotoEmail:(NSString *)emailAccount{ NSString * recipients = [NSString stringWithFormat:@"mailto:%@", emailAccount]; NSString * email = [recipients stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; [[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]]; }
|
-------------本文结束感谢您的阅读-------------