iOS 개발을 하다보면 웹사이트 연결 혹은 전화 등등 기능을 넣어야 할 때 간편하게 구현할 수 있는 방법이다.
// 전화걸기
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://전화번호"]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://01012345678"]];
// 메일 쓰기
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://이메일주소"]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://devprograms@apple.com"]];
//SMS 쓰기
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://전화번호"]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms://01012345678"]];
// 브라우저 실행
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://url주소"]];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://itunesconnect.apple.com"]];
'Development > IOS & Mac' 카테고리의 다른 글
[iOS] Status Bar를 눌러도 Scroll이 Top으로 이동하지 않을때... (0) | 2014.12.03 |
---|---|
UIKit Dynamics (0) | 2014.11.19 |
Xcode auto-complete not working (0) | 2014.10.29 |
Xcode 6.0 간편해진 마켓 업로드 (0) | 2014.09.30 |
iOS에 Google Analytics 설치하기 (0) | 2014.09.07 |