企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
&emsp;&emsp;PPT下载封装在AnyChatDownload类中。 **获取下载单例:** ``` - (AnyChatDownload *)getInstance; ``` 备注: 返回下载单例对象 **下载任务初始化:** ``` - (NSString *)AnyChatDownload:(NSDictionary *)dict; ``` dict 里该传入值为以下列表: | Key | Value | 说明 | | --- | --- | --- | | savepath | NSString | 下载保存本地沙盒地址 | 备注: 返回初始化状态码 **遵循代理协议** @interface AnyChatVC : UIViewController <AnyChatDownloadDelegate> 实现AnyChatDownloadDelegate代理回调: 下载结果接口回调 @param downloadDict fileid 下载文件id filepath 下载文件本地存储路径 errorcode 错误码 -(void)AnyChatDownload:(AnyChatDownload *)anyChatDownload didDownloadFinishWithDict:(NSDictionary *)downloadDict downloadStatus:(int)status; 下载进度接口回调 @param downloadDict fileid 下载文件id progress 下载进度,值为0-100 errorcode 错误码 -(void)AnyChatDownload:(AnyChatDownload *)anyChatDownload didDownloadProgressWithDict:(NSDictionary *)downloadDict;