Преглед на файлове

Use runtime functions over NSObject methods for safety with non-NSObject classes.

Ryan Olson преди 12 години
родител
ревизия
46c5929bd5
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Classes/Object Explorers/FLEXObjectExplorerViewController.m

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

@@ -133,7 +133,7 @@ static const NSInteger kFLEXObjectExplorerScopeIncludeInheritanceIndex = 1;
 - (void)setObject:(id)object
 {
     _object = object;
-    self.title = [[object class] description];
+    self.title = @(class_getName(object_getClass(object)));
     [self updateTableData];
 }