Greg
Greg

Reputation: 34818

Where do you see the result of "#pragma mark" in Xcode 4?

I'm trying to find where I can see the result of #pragma marks in Xcode 4 but can't seem to find it.

The reference here talks about the grouping in the Function Menu but I can't seem to find this in Xcode 4 ?

Upvotes: 8

Views: 6058

Answers (4)

OfficerDave
OfficerDave

Reputation: 151

Along with pragma entries, Xcode will also display points where a comment begins with "\TODO: " Great way to leave and find breadcrumbs for follow-up work.

Upvotes: 0

jose
jose

Reputation: 11

If you include a #pragma mark, it will become more readable.

Thank you. It's very simple but not easy to find it.

Upvotes: 1

kaal101
kaal101

Reputation: 664

You can see it by clicking on "No Selection":

Here

Upvotes: 10

tJener
tJener

Reputation: 2619

When you have the file selected in XCode, in the bar above the editor area (known as the Jump Bar), you might see something to the effect of "Project Name > Classes > Filename > No Selection." Click on "No Selection". Your #pragma marks will fill out this area.

Upvotes: 18

Related Questions