iOS 전화 연결(3가지 방법)

1126 단어
많은 곳에서 iOS 프로그램에 대해 전화를 걸었는데 대부분이 완전하지 않습니다. 오늘 저는 세 가지 방법을 정리했습니다. 각기 다르기 때문에 여러분에게 공유하고 여러분에게 도움이 되었으면 합니다. 1 이런 방법은 전화를 걸면 원래의 앱으로 돌아가지 못하고 통신록에 머무르며 직접 전화를 걸면 알림이 나오지 않습니다.
 NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"]; 
 

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

2, 이런 방법은 전화를 한 후에 원래의 프로그램으로 돌아갈 수 있고 알림도 뜨는데 이런 것을 추천한다

NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"tel:%@",@"186xxxx6979"];

UIWebView * callWebview = [[UIWebView alloc] init];

[callWebview  loadRequest
:[NSURLRequest requestWithURL
:[NSURL URLWithString:str]]]; [self.view addSubview:callWebview]; [callWebview release]; [str release]; 3, 이런 방법도 원래 프로그램으로 돌아가고 알림

NSMutableString * str=[[NSMutableString alloc] initWithFormat:@"telprompt://%@",@"186xxxx6979"];
// NSLog(@"str======%@",str);
[[UIAPplication shared Application] openURL: [NSURLURL With String:str]]

좋은 웹페이지 즐겨찾기