我正在将远程文件(例如:图像文件、pdf 文件...)发送到 Airdrop。我只有这个文件的直接链接:http ://example.com/xxx/png 。目前,我正在做类似下面的代码
NSString *filePath = self downloadFileFromServerWithURL
NSURL *urlFilePath = [NSURL fileURLWithPath:filePath];
NSArray *Items = [NSArray arrayWithObjects:
[NSNumber numberWithFloat:indexPath.row],
urlFilePath,nil];
UIActivityViewController *activityViewController = [[UIActivityViewController alloc] initWithActivityItems:Items applicationActivities:[NSArray arrayWithObjects:xxx, yyy,nil];
[self presentViewController:activityViewController animated:YES completion:nil];
所以,我的问题是,如何在不下载之前与 Airdrop 共享远程文件?我展示了很多 iOS 软件可以做到这一点,比如 DropBox
谢谢