我有一个奇怪的问题,下面的代码在 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];
请建议。
谢谢和问候, 阿尼尔