作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
import UIKit
class CustomView: UIView {
override func drawRect(rect: CGRect) {
print("Draw")
}
}
拖动一个 UIView,将其类设置为 CustomView
,为其创建一个引用 customView
。
当我调用 customView.setNeedsDisplay()
时,CustomView
的 drawRect
被调用。
import UIKit
class CustomImageView: UIImageView {
override func drawRect(rect: CGRect) {
print("DrawImage")
}
}
拖动一个 UIImageView,将其类设置为 CustomImageView
,为其创建一个引用 customImageView
。
当我调用 customImageView.setNeedsdisplay()
时,没有任何反应。为什么?
最佳答案
UIImageView 类经过优化,可以将其图像绘制到显示器上。 UIImageView 不调用其子类的 drawRect: 方法。如果您的子类需要包含自定义绘图代码,您应该改为继承 UIView 类。
关于ios - setNeedsDisplay 不适用于 UIImageView 的子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32773853/
我是一名优秀的程序员,十分优秀!