IKImageView imageCorrection 属性是否有效?
IKImageView 提供了一个“imageCorrection”属性,该属性采用 CIFilter,并且可能在显示图像时使用它。
当我最近尝试使用它时,它对我不起作用。当我将该属性设置为新的 CIFilter 实例时,它仍然为零。
有人成功地使用过这个吗?
IKImageView offers an 'imageCorrection' property, which takes a CIFilter and, presumably, uses it when displaying the image.
When I tried using it recently, it didn't work for me. When I set the property to a new CIFilter instance, it remains nil.
Has anyone managed to use this successfully?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能没有将插座连接到图像视图,因此插座中的指针为
nil
,因此您发送了setImageCorrection:
消息(无论是隐式还是显式)到nil
。You probably didn't hook up your outlet to your image view, so the pointer in your outlet is
nil
, so you sent yoursetImageCorrection:
message (whether implicit or explicit) tonil
.