eviljack
eviljack

Reputation: 3716

Whats the best way to manage code snippets on Xcode?

I have fallen in love with visual studio's code snippets toolkit. Is there anything similar on Xcode?

Upvotes: 8

Views: 4955

Answers (3)

Kristopher Johnson
Kristopher Johnson

Reputation: 82535

Xcode 4 has support for code snippets.

Upvotes: 2

Pablo Santa Cruz
Pablo Santa Cruz

Reputation: 181280

You can also take a loot at this question which is about similar issues with XCode 3 (code templates, code completion, and more).

Upvotes: 3

Mykola Golubyev
Mykola Golubyev

Reputation: 59834

Of course there are. They are under "Edit -> Insert Text Macro".

Or you can simply start typing 'if<ctrl+.>' and this will be expanded into the full if statemenet.

Upvotes: 0

Related Questions