有关在我的iPhone应用中添加评论部分的建议?

时间:2011-08-26 22:48:52

标签: iphone facebook-graph-api comments

我想在我的iPhone应用程序中添加评论部分,我想知道是否有人对此有何想法?

感谢。

更新 对不起,这是我第一次问...我改写自己here

1 个答案:

答案 0 :(得分:2)

我认为您希望为用户提供一种撰写有关应用的评论的方式,以便您收到反馈。这样做的一个好方法是允许用户撰写发给您的电子邮件。使用FMailComposeViewController呈现电子邮件界面。 在项目中包含MessageUI.framework 将您的视图控制器声明为MFMailComposeViewControllerDelegate。 然后,当您希望显示消息视图时:

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];