2010/04/01 18:34
// 이메일 보내기
- (void)sendEmail
{
NSString *email = [[NSString stringWithString:
@"mailto://보낼메일?"
"cc=your@mail.com, mail@mail.com"
"&subject=하이 방가워요 &body=잘지내요?"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:email]];
}
// 전화 걸기
- (void)phoneCall
{
NSLog(@"call msg");
NSString *call = [NSString stringWithFormat:@"tel:010-9954-4123"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:call]];
}
// SMS 보내기
- (void)sendSMS
{
NSString *sms = [[NSString stringWithString:@"sms:010-9999-0000"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:sms]];
}
// 지도 보기
- (void)map
{
NSString *map = [[NSString stringWithString:
@"http://maps.google.com/maps?q=Suwon City"]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:map]];
}
'about DEV' 카테고리의 다른 글
| Ad-Hoc App Distribution with XCode 4 (2) | 2011/05/06 |
|---|---|
| Icons and launch images for iPhone and iPad apps (0) | 2011/02/25 |
| iPhone SDK - Loading Local file in to UIWebView (2) | 2010/07/15 |
| Search and highlight text in UIWebView (3) | 2010/04/14 |
| iPhone SDK 링크기능들 (0) | 2010/04/01 |
| Learn Objective-C On the MAC / 터칭 아이폰 SDK 3.0 (0) | 2010/03/14 |
| 새롭게 뭔가 시작하기.... (2) | 2010/01/22 |


