imageView.contentScaleFactor = 1.0; 3.2 sdk 出错。我该如何解决这个问题?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用以下构造检查该函数是否受支持:
您可以将其打包到 #define 宏中以方便使用。
编辑:“@selector(...)”中缺少双冒号
You may check if the function is supported by using the following construct:
You could pack that into a #define macro to make usage easier.
EDIT: Missed double colon in "@selector(...)"