iOS赃份,利用URL Schemes跳轉(zhuǎn)到設(shè)置wifi岂津、蜂窩移動網(wǎng)絡(luò)頁面
//跳轉(zhuǎn)到設(shè)置WiFi
NSURL *url = [NSURL URLWithString:@"prefs:root=WIFI"];
if ([[UIApplication sharedApplication] canOpenURL:url])
{
[[UIApplication sharedApplication] openURL:url];
NSLog(@"open url");
}else{
NSLog(@"can not open");
}
//跳轉(zhuǎn)到AppStore
NSURL *url = [NSURL URLWithString:@"itms-apps://itunes.apple.com/app/id1018221712"];
if ([[UIApplication sharedApplication] canOpenURL:url])
{
[[UIApplication sharedApplication] openURL:url];
NSLog(@"open url");
}else{
NSLog(@"can not open");
}