marinofaggiana il y a 4 ans
Parent
commit
eca44a168a

+ 4 - 0
iOSClient/Settings/CCAdvanced.m

@@ -264,12 +264,16 @@
 {
     [super viewWillAppear:animated];
     appDelegate.activeViewController = self;
+    
+    [self.tableView reloadData];
+    [self initializeForm];
 }
 
 - (void)changeTheming
 {
     self.view.backgroundColor = NCBrandColor.shared.backgroundForm;
     self.tableView.backgroundColor = NCBrandColor.shared.backgroundForm;
+    
     [self.tableView reloadData];
     [self initializeForm];
 }

+ 3 - 0
iOSClient/Settings/CCManageAccount.m

@@ -365,6 +365,9 @@
 {
     [super viewWillAppear:animated];
     appDelegate.activeViewController = self;
+    
+    [self.tableView reloadData];
+    [self initializeForm];
 }
 
 - (void)changeTheming

+ 3 - 0
iOSClient/Settings/CCManageAutoUpload.m

@@ -215,6 +215,9 @@
     [super viewWillAppear:animated];
     appDelegate.activeViewController = self;
 
+    [self initializeForm];
+    [self reloadForm];
+    
     // Request permission for camera roll access
     [PHPhotoLibrary requestAuthorization:^(PHAuthorizationStatus status) {
         switch (status) {

+ 5 - 1
iOSClient/Settings/NCManageEndToEndEncryption.m

@@ -189,13 +189,17 @@
 {
     [super viewWillAppear:animated];
     appDelegate.activeViewController = self;
+    
+    [self.tableView reloadData];
+    [self initializeForm];
 }
 
 - (void)changeTheming
 {
     self.view.backgroundColor = NCBrandColor.shared.backgroundForm;
     self.tableView.backgroundColor = NCBrandColor.shared.backgroundForm;
-    [self.tableView reloadData];    
+    
+    [self.tableView reloadData];
     [self initializeForm];
 }
 

+ 3 - 0
iOSClient/Settings/NCSettings.m

@@ -193,6 +193,9 @@
 {
     [super viewWillAppear:animated];
     appDelegate.activeViewController = self;
+    
+    [self initializeForm];
+    [self reloadForm];
 }
 
 - (void)changeTheming