1,获取类名。
//* Returns the name of a class.
const char *class_getName( Class cls );//-right
//* Returns the class name of a given object.
const char* object_getClassName(id obj)
一般操作class的接口都以class_开头,操作obj的接口都以object_开头,以objc_开头的接口有操作类的,也有操作对象的。
2,参考资料
2.1 class_getClassVariable。编译器和runtime都不支持,苹果官方回复。 https://lists.apple.com/archives/objc-language/2008/Feb/msg00021.html
2.2 runtime资料参考。
http://www.jianshu.com/p/6b905584f536
2.3 runtime小demo