我已經成功能夠複製或添加圖像通過使用下面的代碼粘貼板:副本視頻uipasteboard
if (ver_float < 6.0)
{
UIPasteboard *pasteboard;
pasteboard = [UIPasteboard generalPasteboard];
NSString *filePath =pathToImage;
[pasteboard setImage:[UIImage imageWithContentsOfFile:filePath]];
}
else
{
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
NSString *filePath =pathToImage;
NSData *videoData = [NSData dataWithContentsOfFile:filePath];
[pasteboard setData:videoData forPasteboardType:[UIPasteboardTypeListImage objectAtIndex:0]];
}
NSURL *urlstr = [NSURL URLWithString:@"sms:"];
[[UIApplication sharedApplication] openURL:urlstr];
但對此我是基於兩個圖像和視頻,使用戶將是使應用程序能夠通過消息或消息合成器發送圖像/視頻。但是,因爲我已經將圖像轉換爲數據並添加到紙板。它正在成功地運行並通過消息發送。但我也需要通過imessage發送視頻。如果有人對此有任何意見,請提供一些建議或解決方案。
我會非常感謝您的幫助。
轉換視頻數據,並使用它像圖像。你試過這個嗎? –
是的,我嘗試,但不能得到結果......哎 – Vishal
這裏一些新的東西,我和非常好的問題.. –