我想在 xcode 中为 ipad 创建一个类似的效果,如以下链接所示,任何一个指南都可以。 http://tutorials.flashmymind.com/2009/04/flash-mouse-trailer-with-stars/
-(IBAction)SendEmail{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"Hello from xCode!"];
问候。