IOS 发送邮件,拨打电话,短信,浏览器

邮件
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://[email protected]"]];
电话
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8004664411"]];
sms
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://466453"]];
浏览器
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunesconnect.apple.com"]];



打完电话回不去的话,就用@"telprompt://123456"就好了

你可能感兴趣的:(IOS 发送邮件,拨打电话,短信,浏览器)