ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的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;