奇妙な問題が発生しました。以下のコードは、IOS5 デバイス、すべてのシミュレーターでは正常に動作しますが、IOS6 デバイスでは失敗します。画像の代わりに空白のビューが表示されます。
要件 : メールに画像を追加する必要があります。
NSString *imageName = @"classroom_tile.png";
imagePath = [[NSBundle mainBundle]bundlePath];
imagePath = [imagePath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@",imageName]];
imagePath = [@"file:///" stringByAppendingString:imagePath];
NSString *formatedUrl = [NSString stringWithFormat:@"</br><table border =\"0\"><tr><td></td><th>%@</th></tr><tr><td><img src= \'%@\' width=200 height=150></td></tr></table>",sometext,imagePath];
[mailComposer setMessageBody:formatedUrl isHTML:YES];
提案してください。
よろしくお願いします、アニル