1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // PlayerViewController+downloadThumbnailImage.m
- // 隐私保护
- //
- // Created by xd h on 2024/1/8.
- //
- #import "PlayerViewController+downloadThumbnailImage.h"
- @implementation PlayerViewController (downloadThumbnailImage)
- - (void)begindownloadThumbnailImageFun:(NSNotification *)notification
- {
- self.curDownloadThumbnailModel = [notification object];
-
- if(!self.curDownloadThumbnailModel
- || ![self.curDownloadThumbnailModel isKindOfClass:[couldPhoneFileModel class]]){
- return;
- }
-
- [self ApplyDownloadThumbnailFun];
- }
- #pragma mark 申请下载缩略图
- - (void)ApplyDownloadThumbnailFun
- {
-
- self.downloadThumbnailTaskUid = [iTools getTaskUidStr];
-
-
-
- // NSString * commandStr = [RCCommandHelp applyForBackupsFileBy:self.backupsTaskUid withFileName:self.backupsFileName withSavePath:backupsDefaultPath];
- //
- //
- // [self.commandChannelManager rc_sendData:commandStr];
- }
- @end
|