ios 프로그램 내 전화 실현

442 단어 ios전화기
두 가지 방법:
     //1、        ,       :
     
     [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://1008611"]];  
     
     //2、 UIWebView   ,               :
     
     UIWebView *callPhoneWebVw = [[UIWebView alloc] init];  
     NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"tel://1008611"]];  
     [callPhoneWebVw loadRequest:request];  

좋은 웹페이지 즐겨찾기