소스 검색

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