Przeglądaj źródła

Avoid premature loading of FLEXObjectExplorerViewController’s view.

Ryan Olson 12 lat temu
rodzic
commit
e72859cb58

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

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