IKImageView imageCorrection 属性是否有效?

发布于 2024-08-06 22:59:23 字数 153 浏览 6 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

苏别ゝ 2024-08-13 22:59:23

当我最近尝试使用它时,它对我不起作用。当我将该属性设置为新的 CIFilter 实例时,它仍然为零。

您可能没有将插座连接到图像视图,因此插座中的指针为 nil,因此您发送了 setImageCorrection: 消息(无论是隐式还是显式)到nil

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.

You probably didn't hook up your outlet to your image view, so the pointer in your outlet is nil, so you sent your setImageCorrection: message (whether implicit or explicit) to nil.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文