`
janedoneway
  • 浏览: 570031 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

app内用打电话

 
阅读更多

From: http://www.cocoachina.com/bbs/read.php?tid=83937

大家想不想在自己的应用中拨打电话呀?打电话可以用openURL:这个API, 如:[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]];但是当电话结束后,返回的是系统的拨打电话界面,如何才能返回自己的应用呢?这儿有两种方法与大家分享。

(1) 合法

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

  (2)不合法 私有方法,不能上App Store的

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"telprompt://10086"]]; 

  (3)UIWebView加载电话,这种是合法的,可以上App Store的

代码如下:
// assuming you have an ivar to store a weak reference to a UIWebView:  
// UIWebView *phoneCallWebView;  
- (void) dialPhoneNumber:(NSString *)aPhoneNumber  
{  
    NSURL *phoneURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",aPhoneNumber]];  
    if ( !phoneCallWebView ) {          
        phoneCallWebView = [[UIWebView alloc] initWithFrame:CGRectZero];  
    }  
    [phoneCallWebView loadRequest:[NSURLRequest requestWithURL:phoneURL]];  
}  
- (void) dealloc  
{  
    // cleanup  
    [phoneCallWebView release], phoneCallWebView = nil;  
   [super dealloc];  
}  
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics