I'm learning objective-c and keep bumping into the @ symbol. It is used in different scenarios, for example at the start of a string or to synthesise accessor methods.
What's does the @ symbol mean in objective-c?
|
|
I'm learning objective-c and keep bumping into the @ symbol. It is used in different scenarios, for example at the start of a string or to synthesise accessor methods. What's does the @ symbol mean in objective-c?
|
|||
|
|
|
|
The Thus with very few exceptions, any time you see The major exceptions are Other exceptions are |
||
|
|
|
|
From Objective-C Tutorial: The @ Symbol, the reason it is on the front of various keywords:
Also when seen in front of a string literal, it makes an NSString rather than a 'char *' in C. |
|||
|
|
|
|
From Macrumors: Objective-C Tutorial, when in front of string literal:
The @ also adds unicode support to C strings. |
||
|
|