|
@@ -22,6 +22,8 @@
|
|
|
#import <KSToolLibrary/KSSmallChoosePicker.h>
|
|
|
#import "CustomNavViewController.h"
|
|
|
|
|
|
+#import "CoursewareDownloadManager.h"
|
|
|
+
|
|
|
@interface INSSettingViewController ()<RSKImageCropViewControllerDelegate>
|
|
|
|
|
|
@property (nonatomic, strong) INSSettingBodyView *bodyView;
|
|
@@ -152,6 +154,11 @@
|
|
|
}
|
|
|
|
|
|
- (void)clearCache {
|
|
|
+
|
|
|
+ if (COURSEWARE_MANAGER.isDownloading) { // 如果在下载 取消
|
|
|
+ [COURSEWARE_MANAGER cancleDownloadCourseware];
|
|
|
+ }
|
|
|
+
|
|
|
NSString *documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
|
|
|
NSString *bundlePath = [documentsPath stringByAppendingPathComponent:@"CoursewarePath"];
|
|
|
NSFileManager *fileManager = [NSFileManager defaultManager];
|