Преглед изворни кода

Avoid premature loading of FLEXObjectExplorerViewController’s view.

Ryan Olson пре 12 година
родитељ
комит
e72859cb58
1 измењених фајлова са 4 додато и 1 уклоњено
  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 updateFilteredClassMethods];
     [self updateFilteredSuperclasses];
-    [self.tableView reloadData];
+    
+    if (self.isViewLoaded) {
+        [self.tableView reloadData];
+    }
 }
 
 - (BOOL)shouldShowDescription