What I want to do is to return the NSArray objects of a specific value (numbers). How can I do it?
Thanks in Advance
What I want to do is to return the NSArray objects of a specific value (numbers). How can I do it? Thanks in Advance |
||||
You can use
|
|||||||||
|
return @[ 1, 2, 42, 1337 ];
– user529758 Jun 14 '13 at 22:29