diff --git a/Src/Main/Server/Others/LKS_ExportManager.m b/Src/Main/Server/Others/LKS_ExportManager.m index be040b9..9c6cc0f 100644 --- a/Src/Main/Server/Others/LKS_ExportManager.m +++ b/Src/Main/Server/Others/LKS_ExportManager.m @@ -95,7 +95,7 @@ @interface LKS_ExportManager () @property(nonatomic, strong) UIDocumentInteractionController *documentController; #endif -@property(nonatomic, strong) LKS_ExportManagerMaskView *maskView; +@property(nonatomic, strong) LKS_ExportManagerMaskView *lks_maskView; @end @@ -129,11 +129,11 @@ - (void)exportAndShare { [[NSNotificationCenter defaultCenter] postNotificationName:@"Lookin_WillExport" object:nil]; - if (!self.maskView) { - self.maskView = [LKS_ExportManagerMaskView new]; + if (!self.lks_maskView) { + self.lks_maskView = [LKS_ExportManagerMaskView new]; } - [visibleVc.view.window addSubview:self.maskView]; - self.maskView.frame = visibleVc.view.window.bounds; + [visibleVc.view.window addSubview:self.lks_maskView]; + self.lks_maskView.frame = visibleVc.view.window.bounds; dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ LookinHierarchyInfo *info = [LookinHierarchyInfo exportedInfo]; @@ -165,7 +165,7 @@ - (void)exportAndShare { NSString *path = [NSString stringWithFormat:@"%@%@", NSTemporaryDirectory(), fileName]; [data writeToFile:path atomically:YES]; - [self.maskView removeFromSuperview]; + [self.lks_maskView removeFromSuperview]; if (!self.documentController) { self.documentController = [UIDocumentInteractionController new];