|
@@ -221,6 +221,12 @@
|
|
|
[UICKeyChainStore setString:sShow forKey:@"showHiddenFiles" service:k_serviceShareKeyChain];
|
|
|
}
|
|
|
|
|
|
++ (void)setHeicToJpeg:(BOOL)show
|
|
|
+{
|
|
|
+ NSString *sSet = (show) ? @"true" : @"false";
|
|
|
+ [UICKeyChainStore setString:sSet forKey:@"heicToJpeg" service:k_serviceShareKeyChain];
|
|
|
+}
|
|
|
+
|
|
|
#pragma ------------------------------ GET
|
|
|
|
|
|
+ (NSString *)getKeyChainPasscodeForUUID:(NSString *)uuid
|
|
@@ -415,6 +421,11 @@
|
|
|
return [[UICKeyChainStore stringForKey:@"showHiddenFiles" service:k_serviceShareKeyChain] boolValue];
|
|
|
}
|
|
|
|
|
|
++ (BOOL)getHeicToJpeg
|
|
|
+{
|
|
|
+ return [[UICKeyChainStore stringForKey:@"heicToJpeg" service:k_serviceShareKeyChain] boolValue];
|
|
|
+}
|
|
|
+
|
|
|
#pragma --------------------------------------------------------------------------------------------
|
|
|
#pragma mark ===== Varius =====
|
|
|
#pragma --------------------------------------------------------------------------------------------
|