imageView.contentScaleFactor = 1.0; 3.2 sdk 出错。我该如何解决这个问题?

发布于 2024-10-11 17:14:48 字数 107 浏览 3 评论 0原文

我在 3.2 sdk 中遇到错误。 imageView.contentScaleFactor = 1.0;错误:请求非结构或联合中的成员“contentScaleFactor”。我该如何解决这个问题?

I get error in 3.2 sdk. imageView.contentScaleFactor = 1.0; error: request for member 'contentScaleFactor' in something not a structure or union. How do I solve the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

究竟谁懂我的在乎 2024-10-18 17:14:48

您可以使用以下构造检查该函数是否受支持:

if( [imageView respondsToSelector:@selector(setContentScaleFactor:)] ) {
    [imageView setContentScaleFactor: 1.0];
} else {
    // Function not supported, work around the issue
}

您可以将其打包到 #define 宏中以方便使用。

编辑:“@selector(...)”中缺少双冒号

You may check if the function is supported by using the following construct:

if( [imageView respondsToSelector:@selector(setContentScaleFactor:)] ) {
    [imageView setContentScaleFactor: 1.0];
} else {
    // Function not supported, work around the issue
}

You could pack that into a #define macro to make usage easier.

EDIT: Missed double colon in "@selector(...)"

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