質問

Is there an equivalent in Objective C to C#'s BinaryReader and BinaryWriter? For example, a BinaryReader would take an NSData* object (or a generalised stream), and would have methods such as -(uint32_t)readUnsignedInt, -(double)readDouble, etc. A BinaryWriter would be symmetrical, and would work with NSMutableData* (or a generalised stream).

役に立ちましたか?

解決

So I ended up writing a reader and writer for binary streams: https://github.com/vladimirg/objc-binary-stream-tools

他のヒント

There isn't, but it is very easy to write one.

I wrote a stream reader for decoding OWON Oscilloscope binary files. See the OwStreamingDataParser class found in this github repository. Creating the writer would be the same thing, but in reverse. That should, at least, give you a start.

Note that if you are reading/writing graphs of Objective-C objects and only targeting iOS or OS X, then you can use NSArchiver.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top