Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tags <# #> in Objective-C

I saw these tags in Apple's documentation like in this example from the NSFetchResultsController Class reference :

NSManagedObjectContext *context = <#Managed object context#>;

I guess it is some kind of reference to some #define or constant.

Can somebody explained it to me ?

Thanks

like image 302
moxy Avatar asked Mar 05 '26 07:03

moxy


1 Answers

This is the notation for Xcode placeholders. You can paste it into the editor and hit tab to jump and change the placeholder.

like image 60
sidyll Avatar answered Mar 07 '26 21:03

sidyll