vote up 0 vote down star

I just had a ridonkulous typo in my iPhone app, answered here.

Now I'm wondering about the @"..." notation.

why this works:

NSArray *someArray = [NSArray arrayWithObjects: @"Fairfield", nil];

and this does not (even though it compiles, it will throw an EXC_BAD_ACCESS):

NSArray *someArray = [NSArray arrayWithObjects: "@Fairfield", nil];

Edit:

Ok, so you guys have pointed out that I can't add a C string to an NSArray, because it's obviously not an object.

Now another question: Isn't this somewhat of an oversight? I mean, why does the "...WithObjects:" message specify a list of (id) instead of (NSObject *)?

flag

1  
This is just a clarification of your previous question, and should have been edited into that one. stackoverflow.com/questions/1656287/… – Paul Tomblin Nov 1 at 3:35
Thanks Paul - I did think about editing it - but I figured this was more general and more informative than pointing out a silly typo. I'll lean towards the other option in the future. – Jeff Meatball Yang Nov 1 at 3:41
The oversight is entirely yours. Descendance from NSObject is safely assumed in all cases. – NSD Nov 1 at 3:53

4 Answers

vote up 2 vote down check

"Fairfield" is a C string, @"Fairfield" is an Objective-C string.

@"Fairfield" is an object (NSString), so you can send it methods ([@"Fairfield" uppercaseString]) and add it to Objective-C arrays ([NSArray arrayWithObjects:@"Fairfield",nil]). You can only add objects to NSArrays.

On the other hand, "Fairfield" is a C string, and is generally not used in Cocoa. For the most part, you can get by with only using @"Fairfield"

link|flag
vote up 1 vote down

The other reason that a number of things in Cocoa deal with id rather than NSObject* is because, unlike some other languages (say, Java and C#), where all objects in the language must inherit from some global base class, it's entirely possible to have objects that do not descend from NSObject (NSProxy being one example). It's not something you'd do often, but it is possible. The id type means "pointer to any Objective C instance".

link|flag
Ahhhh... so this explains the reasoning for id. I had assumed that all NS* objects descended from NSObject. – Jeff Meatball Yang Nov 2 at 18:15
In general, it's pretty safe to assume that they are. (Along with the non-NS* framework classes.) But it's not a rule that they must be. – Sixten Otto Nov 2 at 18:20
vote up 3 vote down

It accepts id rather than NSObject because all initialisers return id. All initialisers return id because subclasses would otherwise override the return type of their ancestors' initialisers.

For example, -[NSMutableString init] can't return NSMutableString * because it subclasses -[NSString init], which can't return NSString * because it overrides -[NSObject init].

Unfortunately, implicit type-casting between const char * and id is perfectly legit, so the compiler won't throw a warning, however a static analyser may be able to pick this sort of mishap up fairly easily.

link|flag
Thank you for the explanation. Very helpful. Too bad the analyzer in XCode doesn't pick it up. – Jeff Meatball Yang Nov 1 at 4:08
vote up 8 vote down

"@Fairfield" is a normal C string with an '@' character in it. @"Fairfield" is an Objective-C string (NSString on OS X) with no literal '@' in it.

You cannot add C strings to Cocoa collections.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.