如何使用 NSCoder 通过蓝牙传输图像和字符串?
我想使用 NSCoder 并通过蓝牙使用单个 NSData 传输 NSString 和 UIImage
你可以简单地说,“我想通过蓝牙发送包含 UIImage 和 NSString 的 NSData”
帮帮我,,,
这是一个非常复杂的问题,我被困住了两天来了:-(
I want to use NSCoder and transfer NSString and UIImage with single NSData over bluetooth
you can simply say, "I want to sent NSData over bluetooth which contains UIImage and NSString"
Help me out,,,
It is very complex question, and I am stuck here since two days :-(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个具有 NSString 和 UIImage 属性的 Objective-C 类
比你现在需要实现的
问题是,UIImage没有实现encodeWithCoder,你可以在这里找到解决方案:使用 NSCoder 存档 UIImages
Create a objective-c class with propertys NSString and UIImage
Than you need to implement
now the problem is, that UIImage doesn't implement encodeWithCoder the solution can you find here: Archiving UIImages with NSCoder