Neil Cheung
Neil Cheung
针对于iCloud视频没有进度交互这个问题,我目前是这样处理的。请大佬指正。 原本的代码: 在原来collectionViewCell点击的时候是直接跳转到TZVideoPlayerController TZVideoPlayerController *videoPlayerVc = [[TZVideoPlayerController alloc] init]; videoPlayerVc.model = model; [self.navigationController pushViewController:videoPlayerVc animated:YES]; 处理后的代码: ProgressBarShowLoading(@"加载中"); PHVideoRequestOptions * option = [[PHVideoRequestOptions alloc] init]; option.networkAccessAllowed = YES; option.progressHandler = ^(double...
I seem to have solved the problem. ``` synchronizer.share(object: eventParent, publicPermission: .readOnly, participants: [], completion: { (share, error) in share?[CKShare.SystemFieldKey.title] = event.name as CKRecordValue completionHandler(share, container, error) }) ``` Before...