Explorar el Código

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

Ryan Olson hace 12 años
padre
commit
46c5929bd5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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];
 }