Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
来自 Python 我正在尝试学习 Objective-C。当我在 Python 中有一个对象时,我总是可以轻松地dir(myObject)查看它有哪些方法。所以我想知道,Objective-C 中的等效命令是什么?
dir(myObject)
Apple 的Objective C 运行时参考可能有您需要的答案。
我想你可能要考虑:
“ class_copyMethodList”开始。请记住,要跟踪实例方法和类方法。
class_copyMethodList