Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8377515
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T15:41:27+00:00 2026-06-09T15:41:27+00:00

The difference between NSInputStream * and CFReadStreamRef seems to be that the first one

  • 0

The difference between NSInputStream * and CFReadStreamRef seems to be that the first one is an objective C object, while the second one is a native struct. Nevertheless, they are toll-free bridged.

I want to implement a program based on network streams.

  • [NSStream getStreamsToHost:port:inputStream:outputStream:] produces NSInputStream * and NSOutputStream *. However, on iOS, this method is not available.

    Therefore, CFStreamCreatePairWithSocketToHost has to be used on iOS.

    CFReadStreamRef readStream;
    CFWriteStreamRef writeStream;
    CFStreamCreatePairWithSocketToHost(
                     kCFAllocatorDefault, host, port, &readStream, &writeStream);
    NSInputStream *read = (__bridge NSInputStream *)readStream;
    NSOutputStream *write = (__bridge NSOutputStream *)writeStream;
    
  • When setting stream properties, not all properties are available when NSInputStream * is used. Especially the kCFStreamPropertyShouldCloseNativeSocket would be interesting to ensure that the socket is also closed when the corresponding stream is closed.

    Do I have to convert the NSInputStream * to a CFReadStreamRef to set this property, and then revert the conversion, to set such a property?

  • …

The NSInputStream * seems to have multiple disadvantages. Is its only advantage really that I can provide an own subclass of it, while I cannot do so in the CFReadStreamRef case? When should which method be used?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T15:41:28+00:00Added an answer on June 9, 2026 at 3:41 pm

    In general, most Foundation/CoreFoundation toll-free bridged classes are also similar in terms of behavior. But you’re right, this is not the case for NSInputStream * and CFReadStreamRef. Apple’s Setting Up Socket Streams guide only explains what you describe. And even when using the latest initializers (like inputStreamWithURL: available in 10.6), it still doesn’t work when url is remote (eg. http://...).

    The main advantage I see to continue using NSInputStream is a better integration within an Objective-C application. At any time, you can try to change the property of your NSInputStream * object (read) like this:

    if (!CFReadStreamSetProperty((CFReadStreamRef)read,
                                  kCFStreamPropertyShouldCloseNativeSocket,
                                  kCFBooleanTrue))
         failure("property change not accepted");
    

    As an alternative to all of this, I would suggest to take a look at the NSURLRequest and NSURLConnection objects described in URL Loading System Programming Guide.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The difference between Chr and Char when used in converting types is that one
Difference between start-pointers and interior-pointers and in what situation we should prefer one over
Can any one explain difference between position and anchor point in cocos-2D with some
difference between web services clients results in one error in one success I have
The difference between a JavaScript Array , and Object is not very big. In
What's the difference between the following two pieces of code? Version B seems harder
Any difference between a = session.query(Accounts).filter(Accounts.key = 4).first() and a = session.query(Accounts).filter(Accounts.key = 4)[0]
The difference between to datetimes is the number of seconds between them. This seems
The difference between them is that the PHP's urlencode encodes spaces with + instead
What's the difference between calling a method through an object vs a class. for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.