現在、IMessage経由で写真/ビデオを送信する必要があるアプリを開発しています。写真
コードの送信は適切に機能していますが、IMessageを介してビデオを送信しているときは、
コンポーザーで作成するアイコンは、以下のようなビデオを表示しません。
私はこのコードを使用して、送信するためにIMessageにビデオを表示しています。
if (ver_float < 6.0)
{
UIPasteboard *pasteboard;
pasteboard = [UIPasteboard generalPasteboard];
NSString *filePath =pathToVideo;
NSData *datavideo = [NSData dataWithContentsOfFile:filePath ];
[pasteboard setData:datavideo forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];
}
else
{
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *filePath =pathToVideo;
NSData *videoData = [NSData dataWithContentsOfFile:filePath];
[pasteboard setData:videoData forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];
}
NSURL *urlstr = [NSURL URLWithString:@"sms:"];
[[UIApplication sharedApplication] openURL:urlstr];
どうすればこれを解決できますか?よろしくお願いします。