使用 sms/tel 协议头和联系人的电话号码构建 url 地址,通过 UIApplication 对象的 openUrl 方法启动系统短信息/打电话应用,实现功能(模拟器不具备打电话和发短信的功能,需要真机调试)
-(void)callWithPhoneNumber{
UIApplication*app=[UIApplication sharedApplication];
NSString*urlString=[NSString stringWithFormat:@"tel://%@",phoneNumber];
NSURL*url=[NSURL URLWithString:urlString];
[app openURL:url];
}
-(void)messageWithPhoneNumber{
UIApplication*app=[UIApplication sharedApplication];
NSString*urlString=[NSString stringWithFormat:@"sms://%@",phoneNumber];
NSURL*url=[NSURL URLWithString:urlString];
[app openURL:url];
}