//聯(lián)系人:石虎QQ: 1224614774昵稱:嗡嘛呢叭咪哄
???????? QQ群:807236138 ?群稱:iOS 技術(shù)交流學(xué)習(xí)群
/**
注意:打電話熔恢、發(fā)短信脐湾、發(fā)郵箱 、跳轉(zhuǎn)網(wǎng)站 功能(系統(tǒng)方法)---->要真機(jī)才有效果
*/
1.簡單實(shí)現(xiàn)效果圖:
2.實(shí)現(xiàn)代碼:
@implementationViewController
//打電話
- (IBAction)makePhone:(id)sender {
NSString*phoneNum =self.phoneTF.text;
NSString*urlStr = [NSStringstringWithFormat:@"tel://%@",phoneNum];
NSURL*url = [NSURLURLWithString:urlStr];
//調(diào)用系統(tǒng)內(nèi)置應(yīng)用撥打電話
[[UIApplicationsharedApplication]openURL:url];
}
//發(fā)信息
- (IBAction)sendMessage:(id)sender {
NSString*urlStr = [NSStringstringWithFormat:@"sms://%@",self.phoneTF.text];
[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:urlStr]];
}
//發(fā)郵箱
- (IBAction)sendEmail:(id)sender {
NSString*mailStr = [NSStringstringWithFormat:@"mailto://%@",self.emailTF.text];
[[UIApplicationsharedApplication]openURL:[NSURLURLWithString:mailStr]];
}
//進(jìn)入網(wǎng)站
- (IBAction)gotoURL:(id)sender {
NSURL*url = [NSURLURLWithString:self.phoneTF.text];
[[UIApplicationsharedApplication]openURL:url];
}
@end
謝謝!!!