瀏覽代碼

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];
 }