This Blog is for all iOS App Developers to get the code samples and working Code directly from the Blog.Iam requesting to all please add your inputs as well for the Blog can useful to all.
Search This Blog
Monday, September 13, 2010
call/sms/email
#pragma mark DialNumber
-(IBAction)callClicked
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@",phoneNo.text]]];
}
#pragma mark SMSApplication
-(IBAction)smsClicked
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"sms:"]]];
}
#pragma mark EmailApplication
-(IBAction)emailClicked
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@?subject=testMail&body=its test mail.",email.text]]];
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment