I have a button that is right now opening the mail application and adding a contact through a property I set up. How can I do this to also add a subject line through a property?
- (IBAction)tourButton:(id)sender {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"mailto:%@", self.displayEmail]]];
}