clipsToBounds causes UIImage to not display in iOS10 amp; XCode 8(clipsToBounds 导致 UIImage 在 iOS10 amp; 中不显示代码 8)
问题描述
我将我的项目切换到 iOS 10 和 XCode 8 的新 beta 版本.在我使用的应用程序的所有三个区域中:
I switched my project over to new beta versions of iOS 10 and XCode 8. In all three areas of my app where I use:
imageView.layer.cornerRadius = imageView.frame.size.width/2
imageView.clipsToBounds = true
相关图像根本不显示.我尝试清理项目以及构建文件夹,重新启动设备,尝试各种模拟器,重新添加 imageView,以编程方式设置关联的 UIImage
而不是从资产中选择一个.
The associated images are not displaying at all. I have attempted cleaning the project as well as the build folder, restarting the device, trying on various simulators, re-adding the imageView, programmatically setting the associated UIImage
instead of choosing one from the assets.
删除 clipsToBounds
行会显示矩形图像,无论 masksToBounds
是 true
还是 false
.如何在 XCode8/iOS10 中制作圆形图像?
Removing the clipsToBounds
line shows the rectangular image regardless of whether masksToBounds
is true
or false
. How can I make a circular image in XCode8 / iOS10 ?
该项目是 Swift 2.x,尚未更新为 Swift 3.0 语法.
The project is Swift 2.x and not yet updated to Swift 3.0 syntax.
推荐答案
我遇到了同样的问题,在所有的圆角/clipsToBounds
东西修复问题之前调用 layoutIfNeeded
.带有 xcode 8 GM 的 iOS 10 GM 导致视图因圆角而消失clipsToBounds
I had the same problem and calling layoutIfNeeded
before all the rounded corner / clipsToBounds
stuff fixed the issue. iOS 10 GM with xcode 8 GM causes views to disappear due to roundedCorners & clipsToBounds
这篇关于clipsToBounds 导致 UIImage 在 iOS10 & 中不显示代码 8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:clipsToBounds 导致 UIImage 在 iOS10 & 中不显示代码 8
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01