Browse Source

文案修改

Steven 6 months ago
parent
commit
df2e8c9036

+ 2 - 2
KulexiuForStudent/KulexiuForStudent/Common/Base/WebView/KSBaseWKWebViewController.m

@@ -792,7 +792,7 @@ typedef NS_ENUM(NSInteger, CHOOSETYPE) {
 }
 
 - (void)downloadFileWithUrl:(NSString *)fileUrl parm:(NSDictionary *)parm {
-    [LOADING_MANAGER showCustomLoading:@"文件下载中"];
+    [LOADING_MANAGER showCustomLoading:@"下载中"];
     [KSNetworkingManager downloadFileRequestWithFileUrl:fileUrl progress:^(int64_t bytesRead, int64_t totalBytes) {
         // 显示进度
         NSInteger progress = (NSInteger)(bytesRead*1.0 / totalBytes) * 100;
@@ -914,7 +914,7 @@ typedef NS_ENUM(NSInteger, CHOOSETYPE) {
 
 
 - (void)downFile:(NSString *)fileUrl {
-    [LOADING_MANAGER showCustomLoading:@"文件下载中..."];
+    [LOADING_MANAGER showCustomLoading:@"下载中"];
     [KSNetworkingManager downloadFileRequestWithFileUrl:fileUrl progress:^(int64_t bytesRead, int64_t totalBytes) {
         
     } success:^(NSURL * _Nonnull fileUrl) {

+ 1 - 1
KulexiuForStudent/KulexiuForStudent/Module/Mine/Works/Controller/KSVideoCropViewController.m

@@ -82,7 +82,7 @@
 }
 
 - (void)downloadUrl {
-    [LOADING_MANAGER showCustomLoading:@"下载中..."];
+    [LOADING_MANAGER showCustomLoading:@"下载中"];
     [KSNetworkingManager downloadFileRequestWithFileUrl:self.remoteUrl progress:^(int64_t bytesRead, int64_t totalBytes) {
         NSInteger progress = (NSInteger)(bytesRead*1.0 / totalBytes) * 100;
         NSString *tipsString = [NSString stringWithFormat:@"下载中 %zd%%",progress];