I can write @42
, which creates an NSNumber
with int
value 42. Can I do this with a variable, like @someIntVar
? Obviously I tried it and it doesn't work (which sucks because then I have to go through [NSNumber numberWithInt:someIntVar]
). Is it possible with a slightly different syntax?
New Objective-c Literals in 4.4
Asked Answered
I strongly suggest you read the official clang documentation on the matter: http://clang.llvm.org/docs/ObjectiveCLiterals.html
But, to box a variable, or any expression, you can use parentheses:
id num = @(someIntVar);
© 2022 - 2024 — McMap. All rights reserved.
NSStrings
(same@(...)
syntax) – Lund