SuperDuperTango
SuperDuperTango

Reputation: 1408

In Mac/iOS programming, what is a "Foundation Object"?

I've seen reference to "Foundation Object" (specifically in the NSJSONSerialization Class docs https://developer.apple.com/library/ios/documentation/foundation/reference/nsjsonserialization_class/Reference/Reference.html), however I'm not really sure what a "Foundation Object" is, and is it different than a "Core Foundation Object"?

Upvotes: 2

Views: 1419

Answers (1)

Fogmeister
Fogmeister

Reputation: 77621

It tells you in that link bout 3 lines further down.

The objects can be instances of...

  • NSArray
  • NSDictionary
  • NSNumber
  • NSDate
  • NSString or
  • NSNull

Upvotes: 7

Related Questions