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.
在java中如果你写myInstance.(list of methods here)你会得到一个所有方法的列表,但是在objective c你写[myInstance(method)]你必须写一个字符来查看所有以这个字符开头的方法。
可以在不写第一个字符的情况下显示所有方法吗?像 [myInstance (这里的方法列表)]
谢谢!
是的,有可能,但你必须这样写
[myInstance *]
而不是*,您必须按下Esc键....
*
Xcode 确实有智能感知。只需在空格后按ESC键,它将显示所有方法。