当前尝试访问 的UIImage
属性UIImageView
以实例化另一个UIImage
对象。只是我正在尝试这样做。
UIImage *myImage = myExistingView.image;
但是,该属性不会设置。我不断得到 myImage 的 nil 值。
我想复制图像,最终做类似的事情
UIImageView *newImageView = [[UIImageView alloc] initWithImage:myImage];
但我似乎无法理解。建议?
编辑。最近的尝试没有奏效。
UIImageView *newView = [[UIImageView alloc] initWithImage:[[UIImage alloc] initWithData:UIImagePNGRepresentation(myImageView.image)]];