欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

iphone 拨打电话的API 博客分类: iphone iphoneapi 

程序员文章站 2024-03-14 16:31:04
...

今天在网上看到这个,先留着

+ (void) makeCall:(NSString *)phoneNumber
{    
    NSURL *phoneNumberURL = [NSURL URLWithString:[NSString stringWithFormat:@"tel:%@", phoneNumber]];
    NSLog(@"make call, URL=%@", phoneNumberURL);
    
    [[UIApplication sharedApplication] openURL:phoneNumberURL];    
}

相关标签: iphone api