Explorar el Código

Avoid premature loading of FLEXObjectExplorerViewController’s view.

Ryan Olson hace 12 años
padre
commit
e72859cb58
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      Classes/Object Explorers/FLEXObjectExplorerViewController.m

+ 4 - 1
Classes/Object Explorers/FLEXObjectExplorerViewController.m

@@ -176,7 +176,10 @@ static const NSInteger kFLEXObjectExplorerScopeIncludeInheritanceIndex = 1;
     [self updateFilteredMethods];
     [self updateFilteredMethods];
     [self updateFilteredClassMethods];
     [self updateFilteredClassMethods];
     [self updateFilteredSuperclasses];
     [self updateFilteredSuperclasses];
-    [self.tableView reloadData];
+    
+    if (self.isViewLoaded) {
+        [self.tableView reloadData];
+    }
 }
 }
 
 
 - (BOOL)shouldShowDescription
 - (BOOL)shouldShowDescription