hi ..
I want to open Mail app from my app when the one button in actionsheet is pressed, I know this way :
-(IBAtion)openClick:(id)sender
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@”mailto:
[email protected]”]];
}
but can I write this method inside if statement or
switch case?(in ControlView class NOT NSObject class , because I use actionsheet for this propose)
like this:
- (void)actionSheet:(UIActionSheet *)modalView clickedButtonAtIndex:(NSInteger)buttonIndex
{
switch (buttonIndex)
{
case 0:
{
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@”mailto:
[email protected]”]];
break;
}
I can't test my code because simulator doesn't have the Mail app..
So I need to know is this will work in controlView or must write it in NSObject class ?
+
seconde question :
I want to open Mail app from my app and copy the content in the view to mail body,then the user choice the contact from his contacts list ! Is this way achieve my goal?