iOS URL Schemes Objective-C
// Make a phone call
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:12125551212"]];
// Open an url using default brower Safari
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://www.arkilis.me"]]
// Send an email by calling Email app
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto:arkilis@gmail.com"]];
// Send a SMS
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:0400000000"