Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add a comments section to my iPhone app and i wondered if anyone have any ideas of how to that?

Thanks.

UPDATE I'm sorry it was my first time asking.. I rephrased myself here

share|improve this question
1  
There's not nearly enough info here to give a good answer. Tell us more about your app, and we can give you better advice. – James Aug 26 '11 at 23:26
please see this question – KingBabar Aug 27 '11 at 16:17

closed as off topic by fbrereto, BK., Doug T., Jonathan Sterling, Graviton Aug 27 '11 at 1:39

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

I assume you're wanting to give your users a way of writing comments about your apps, for you to receive feedback. One good way to do this is by allowing to user to compose an email which is addressed to you. Use a FMailComposeViewController to present the email interface. Include the MessageUI.framework in your project.
Declare your view controller to be a MFMailComposeViewControllerDelegate. Then when you want the message view to appear:

MFMailComposeViewController *myMailViewCon = [[MFMailComposeViewController alloc] init];
[myMailViewCon setMailComposeDelegate:self];
//set it's contents
[myMailViewCon setSubject:@"app feedback"];
[myMailViewCon setToRecipients:@"yourAddress@email.com"];
[myMailViewCon setMessageBody:@"Dear app developer, here are my comments:"] isHTML:NO];

[self presentModalViewController:myMailViewCon animated:YES];
[myMailViewCon release];
share|improve this answer
thank you for your descriptive answer. – KingBabar Aug 27 '11 at 13:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.