vote up 0 vote down star

Curious:

Why is it that Foundation on OS X contains a wrapper for CFHost (NSHost) but not CFSocket, and Foundation on iPhone OS doesn't even have NSHost?

And as an aside, are there any libraries or has any written any wrappers for CFHost and CFSocket on the iPhone?

flag

2 Answers

vote up 0 vote down

The way I've always thought about this sort of thing, and this dates back to the OPENSTEP days (where Cocoa came from) is simply because regardless of what lies under the higher level framework you are utilizing, in this case, let's just refer to NSHost as an example class as part of the Foundation framework. You shouldn't concern yourself with the underlying object which provides the functionality to NSHost, just use it. In the case of an analogue to CFSocket however, sockets are generic. 99% of the time you're working with something akin to an HTTP socket, or otherwise which has high level support already.

I can only assume that Apple has taken it upon themselves to do what they think best for us developers and abstract away the generic when at all they deem appropriate. Unfortunately, there's no clear cut answer to your question unless someone directly involved with the Foundation framework from Apple chips in, as this isn't documented anywhere.

link|flag
vote up 0 vote down

Oddly enough, the iPhone version of Foundation does actually include the NSHost class, but Apple doesn't provide the headers for it.

link|flag
It's likely private, and likely to change betweet releases. – jbrennan Sep 15 at 21:34
It is private, but hasn't changed since 1.0; still, using the CFHost functions isn't too difficult and is recommended over the Foundation equivalent – rpetrich Sep 16 at 9:35

Your Answer

Get an OpenID
or

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