我正在编写一个iPhone应用程序,使用蓝牙将图像从一个iPhone传输到另一个iPhone。如何存档图像并将其发送到另一部iPhone,然后取消存档图像?使用NSKeyedarchiver直接存档图像不起作用。
答案 0 :(得分:2)
您可以使用Image Manipulation函数UIImageJPEGRepresentation
或UIImagePNGRepresentation
将UIImage对象转换为NSData表示。
您可以使用UIImage便捷方法imageWithData:或初始化程序initWithData:将NSData表示形式转换为UIImage。