您的位置:首页 > 移动开发 > IOS开发

IOS 开发,调用打电话,发短信,打开网址

2013-11-29 16:15 429 查看
1、调用 自带mail

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://admin@hzlzh.com"]];

2、调用 电话phone

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://8008808888"]];

3、调用 SMS

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://800888"]];

4、调用自带 浏览器 safari

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.hzlzh.com"]];

调用phone可以传递号码,调用SMS 只能设定号码,不能初始化SMS内容。

若需要传递内容可以做如下操作:

加入:MessageUI.framework

#import <MessageUI/MFMessageComposeViewController.h>

实现代理:MFMessageComposeViewControllerDelegate

调用sendSMS函数

//内容,收件人列表

- (void)sendSMS:(NSString *)bodyOfMessage recipientList:(NSArray *)recipients

{

MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];

if([MFMessageComposeViewController canSendText])

{

controller.body = bodyOfMessage;

controller.recipients = recipients;

controller.messageComposeDelegate = self;

[self presentModalViewController:controller animated:YES];

}

}

// 处理发送完的响应结果

- (void)messageComposeViewController:(MFMessageComposeViewController *)controller didFinishWithResult:(MessageComposeResult)result

{

[self dismissModalViewControllerAnimated:YES];

if (result == MessageComposeResultCancelled)

NSLog(@"Message cancelled")

else if (result == MessageComposeResultSent)

NSLog(@"Message sent")

else

NSLog(@"Message failed")

}

发送邮件的为:

导入#import <MessageUI/MFMailComposeViewController.h>

实现代理:MFMailComposeViewControllerDelegate

//发送邮件

-(void)sendMail:(NSString *)subject content:(NSString *)content{

MFMailComposeViewController *controller = [[[MFMailComposeViewController alloc] init] autorelease];

if([MFMailComposeViewController canSendMail])

{

[controller setSubject:subject];

[controller setMessageBody:content isHTML:NO];

controller.mailComposeDelegate = self;

[self presentModalViewController:controller animated:YES];

}

}

//邮件完成处理

-(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{



[self dismissModalViewControllerAnimated:YES];



if (result == MessageComposeResultCancelled)

NSLog(@"Message cancelled");

else if (result == MessageComposeResultSent)

NSLog(@"Message sent");

else

NSLog(@"Message failed");



默认发送短信的界面为英文的,解决办法为:

在.xib 中的Localization添加一組chinese就ok了

转自: http://zxs19861202.iteye.com/blog/1458797



发送短信,发邮件,打电话代码实现

基础代码:

+ (void)alert:(NSString *)msg

{

UIAlertView *alertView = [[[UIAlertView alloc] initWithTitle:msg message:@"" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil] autorelease];

[alertView showWithBackground];

}

+ (NSString*) cleanPhoneNumber:(NSString*)phoneNumber

{

NSString* number = [NSString stringWithString:phoneNumber];

NSString* number1 = [[[number stringByReplacingOccurrencesOfString:@" " withString:@""]

// stringByReplacingOccurrencesOfString:@"-" withString:@""]

stringByReplacingOccurrencesOfString:@"(" withString:@""]

stringByReplacingOccurrencesOfString:@")" withString:@""];



return number1;

}

复制代码

打电话:

+ (void) makeCall:(NSString *)phoneNumber

{

if ([DeviceDetection isIPodTouch]){

[UIUtils alert:kCallNotSupportOnIPod];

return;

}



NSString* numberAfterClear = [UIUtils cleanPhoneNumber:phoneNumber];



NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", numberAfterClear]];

NSLog(@"make call, URL=%@", phoneNumberURL);



[[UIApplication sharedApplication] openURL:phoneNumberURL];

}

复制代码

发短信:

+ (void) sendSms:(NSString *)phoneNumber

{

if ([DeviceDetection isIPodTouch]){

[UIUtils alert:kSmsNotSupportOnIPod];

return;

}



NSString* numberAfterClear = [UIUtils cleanPhoneNumber:phoneNumber];



NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"sms:%@", numberAfterClear]];

NSLog(@"send sms, URL=%@", phoneNumberURL);

[[UIApplication sharedApplication] openURL:phoneNumberURL];

}

复制代码

发邮件:

+ (void) sendEmail:(NSString *)phoneNumber

{

NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@", phoneNumber]];

NSLog(@"send sms, URL=%@", phoneNumberURL);

[[UIApplication sharedApplication] openURL:phoneNumberURL];

}

+ (void) sendEmail:(NSString *)to cc:(NSString*)cc subject:(NSString*)subject body:(NSString*)body

{

NSString* str = [NSString stringWithFormat:@"mailto:%@?cc=%@&subject=%@&body=%@",

to, cc, subject, body];

str = [str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];



[[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];



}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: