次のコードを使用しています
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"Check out"];
UIImage *morphedImage = [sharedSingleton getCopy];
NSData *myData = UIImagePNGRepresentation(morphedImage);
[picker addAttachmentData:myData mimeType:@"image/png" fileName:@"RaceFaceImage"];
[picker setMessageBody:@"I've given you a new look using my RaceFace iPhone application. Check it out and have a good laugh. I dare you to Race me, download the app here:<b>Sourish</b><a href='www.google.com'>itunesLink</a>" isHTML:YES];
[self presentModalViewController:picker animated:YES];
[picker release];
}
else
{
}
この方法でO/Pinを取得しています
青いテキストをクリックすると、particualr urが開かれるようにしたいのですが、どうすればそれを行うことができますか??
どんな種類のヘルプも非常に役立ち
ます ありがとうございます