Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以在一个NSData对象中存储和检索多个文本字符串?
NSData
我正在研究外部配件,只是想知道如何将多个任意参数传入和传出设备。
我假设它们需要NSString从一个对象解码为NSData对象。那么有什么方法可以区分NSString来自一个数据流的单独对象吗?
NSString
或者,是否将多个字符串参数存储在单独的NSData对象中?每个都有一个缓冲区?
谢谢
使用 NSKeyedArchiver 来归档一个 NSStrings 数组。
+ (NSData *)archivedDataWithRootObject:(id)rootObject
NSKeyedArchiver 参考