What is the iOS equivalent to Android Socket progr

2019-09-29 05:38发布

I have some socket programming code in Android (Java) and I want to implement the same thing in iOS (Objective-C).

On iOS, NSStream, NSInputStream, NSOutputStream are some of the classes for socket programming.

I have doubts when comparing them to some methods on Android's SocketChannel class.

socketChannel.configureBlocking
socketChannel.setSoTimeout
socketChannel.connect 
socketChannel.finishConnect
socketChannel.isConnected

What are the equivalent methods in iOS classes like NSStream, NSInputStream?

And also ByteBuffer on Android has a position() method. What is the equivalent method in iOS?

I know the NSStream constants are there, but I am confused about how they map to Android code. Could you please suggest which methods are equivalent in iOS?

1条回答
三岁会撩人
2楼-- · 2019-09-29 06:04

You don't translate code line by line. Different platforms and even different frameworks use different styles of API.

Since your question doesn't say what you are trying to do, I can only recommend that you read more about how stream and socket programming works on iOS in

查看更多
登录 后发表回答