openURL

UIApplication有个功能十分强大的openURL:方法

- (BOOL)openURL:(NSURL*)url;

openURL:方法的部分功能有

打电话

UIApplication *app = [UIApplication sharedApplication];
[app openURL:[NSURL URLWithString:@"tel://10086"]];

发短信

[app openURL:[NSURL URLWithString:@"sms://10086"]];

发邮件

[app openURL:[NSURL URLWithString:@"mailto://cbgtyw@gmail.com"]];

打开一个网页资源

[app openURL:[NSURL URLWithString:@"http://www.terwer.com"]];

打开其他app程序

posted @ 2015-09-07 14:43  MJHelloWorld  阅读(169)  评论(0编辑  收藏  举报