开发者

Searching within Xcode

I've had some problems with searching in Xc开发者_如何学编程ode, what is the best way to find and locate a method or class within a certain project?


command-shift-O will bring up the "open quickly" box, which searches textually and symbolically.


Press ⇧+⌘+O to open the 'Open Quickly...' dialogue window.

From there you can type any symbol name or filename to quickly zoom around your project.

Unfortunately, it doesn't do wildcard or partial searching (much to my frustration) so you need to know the name (or at least the beginning of the name) for it to be much use.

You can use it to open system symbols or headers too, eg, just type UITableView to view the header for it.


If you know the name of the method or class, a really easy way is to type it in whatever document you are in, then hold command and double-click the text. XCode will jump directly to the definition of whatever you double-clicked (even if it is not part of the project).


Project Find with the type of search set to definitions works well.


If you are trying to find the definition of a class from where it's being used, you can right click over the class name and select "Go to definition"

This will take you to where the class/function is defined

Alternatively there's "Find in project"


Pressing ⇧+⌘+F will open up Project Find. Type in what you want to find, and then in the drop-down next to it select "In Project" and press "find."

Voila! It should group the results by file for you.


Look on the left bar, you have a smart folder called "Project Symbols." When you click on it, it will display all the symbols (eg. classes, methods, properties) available in your project. You can even search in this folder by entering a term in the box in the upper right corner.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜