views:

702

answers:

1

The following code:

[[NSData alloc]initWithContentsOfURL:[NSURL URLWithString:mapURL]]

returns an instance of NSConcreteData as opposed to NSData (which I expected!). What does NSConcreteData represent, exactly, and why is it being returned instead of an instance of NSData? Further, where is this class defined? XCode is complaining that it hasn't been defined, but I don't know what I should include in order to get the class.

Any help appreciated!

+6  A: 

The Foundation framework uses class clusters in certain areas to provide a common interface to various classes. What this means is that, when you use an NSData API to create an NSData object, the actual class that is instantiated and returned is different from NSData, but can and should be treated and referred to as an NSData object by your code.

At the end of the day, the simple answer is: ignore the existence of NSConcreteData and treat it like NSData.

For more information on class clusters, please see the Class Clusters section of Apple's Cocoa Fundamentals Guide.

Fraser Speirs
I found the root of my problem to be a check on [sub isMemberOfClass:[NSData class]]instead of [sub isKindOfClass:[NSData class]]The latter returns true if sub is an instance of a class derived from NSData, whereas the former wouldn't.Cheers!
Mr. Matt