Wakemate does an amazing job of auto-populating a users email address in a Feedback form in an iphone app. See here:
Does anyone know how to do this (with the caveat that we are using Facebook Connect for login)?
Wakemate does an amazing job of auto-populating a users email address in a Feedback form in an iphone app. See here:
Does anyone know how to do this (with the caveat that we are using Facebook Connect for login)?
I think you should read Apple docs it will help you and more over the ui that is being used here is just because they probably subclassed MFMailComposeViewController
You can use this block of code for your purpose.
picker.mailComposeDelegate = self;
NSArray *toRecipients = [NSArray arrayWithObject:@"abcd@xyz.com"];
NSString *tosubject =txtSubject.text;
[picker setSubject:tosubject];
// Set up recipients
[picker setToRecipients:toRecipients];
Cheers