我在使用空投分享视频时遇到了一些麻烦。所以,我正在使用AssetLibrary
这样的:
else if (conformsToVideo) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Asset Loaded" message:@"Video One Loaded"
delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
self.mediaAsset = [AVAsset assetWithURL:[info objectForKey:UIImagePickerControllerMediaURL]];
UIActivityViewController * controller = [[UIActivityViewController alloc] initWithActivityItems:@[self.mediaAsset] applicationActivities:nil];
[self presentViewController:controller animated:YES completion:nil];
}
也许这不是这样做的方法,我不知道,我也没有找到任何关于它的教程,所以如果你有,我很乐意接受。
现在我的问题是,当我选择一个视频时一切正常,直到UIActivityViewController
弹出,我没有任何错误,但我不能使用空投(nor any other service BTW
),我唯一能做的就是按下Cancel button
.UIAVController
我正在使用iOS 8.3
.
谢谢你的帮助