如何使用系统自带的打电话、发短信、发邮件、上网?##
使用storyboard画了下面几颗按钮
点击相应的按钮执行对应的操作
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
打电话###
- (IBAction)callButtonClicked:(UIButton *)sender {
// 电话号码
NSString *phoneNumber=@"13888888888";
// 直接拨打电话
//NSString *url=[NSString stringWithFormat:@"tel://%@",phoneNumber];
// 会提示用户是否拨打电话
NSString *url=[NSString stringWithFormat:@"telprompt://%@",phoneNumber];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
发短信###
- (IBAction)messageButtonClicked:(UIButton *)sender {
NSString *phoneNumber=@"13888888888";
NSString *url=[NSString stringWithFormat:@"sms://%@",phoneNumber];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
发邮件###
- (IBAction)emailButtonClicked:(UIButton *)sender {
NSString *mailAddress=@"123456789@qq.com";
NSString *url=[NSString stringWithFormat:@"mailto://%@",mailAddress];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
上网###
- (IBAction)internetButtonClicked:(UIButton *)sender {
NSString *url=@"http://www.baidu.com";
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:url]];
}
@end
说明:按照这种方式进行操作,点击按钮执行完相应的操作之后不能回到APP界面了。
本站以现代、古代情诗为主,情诗网创办于2013年,以原创爱情诗歌、经典情诗、现代情诗、古代情诗、英文情诗、情诗绝句为主并收集古诗、古诗词、诗歌大全、诗词名句的文学门户。方便您下次继续阅读;可以放在浏览器的收藏夹中(快捷键Ctrl+D);或者看到喜欢或者有趣的诗词可以通过分享按钮给你的好友分享;情诗网是目前最全情诗大全网站之一。并欢迎广大诗歌爱好者阅览投稿!喜欢本站的话请大家把本站告诉给你朋友哦!地址是 www.qingshiwang.com !