如何在iPhone中存档和取消归档图像

时间:2009-11-25 08:24:51

标签: iphone uiimage bluetooth nsdata

我正在编写一个iPhone应用程序,使用蓝牙将图像从一个iPhone传输到另一个iPhone。如何存档图像并将其发送到另一部iPhone,然后取消存档图像?使用NSKeyedarchiver直接存档图像不起作用。

1 个答案:

答案 0 :(得分:2)

您可以使用Image Manipulation函数UIImageJPEGRepresentationUIImagePNGRepresentation将UIImage对象转换为NSData表示。

您可以使用UIImage便捷方法imageWithData:或初始化程序initWithData:将NSData表示形式转换为UIImage。