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

Don’t allow drill-ins to edit properties/ivars or call methods from the class explorer.

Only class methods can be called from here.
Ryan Olson пре 12 година
родитељ
комит
19af65442c
1 измењених фајлова са 10 додато и 0 уклоњено
  1. 10 0
      Classes/Object Explorers/FLEXClassExplorerViewController.m

+ 10 - 0
Classes/Object Explorers/FLEXClassExplorerViewController.m

@@ -119,4 +119,14 @@ typedef NS_ENUM(NSUInteger, FLEXClassExplorerRow) {
     return NO;
 }
 
+- (BOOL)canCallInstanceMethods
+{
+    return NO;
+}
+
+- (BOOL)canHaveInstanceState
+{
+    return NO;
+}
+
 @end