본문 바로가기

Development/IOS & Mac

Open URL 활용하기

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"]];