我正在使用 PaintCode 创建一个按钮。我导入 StyleKit,并为我的 RankView 按钮创建 NSButton 类。像这样:
import Cocoa
@IBDesignable
class RankView: NSButton {
override func drawRect(dirtyRect: NSRect) {
super.drawRect(dirtyRect)
StyleKit.drawRank2()
// Drawing code here.
}
}
但是当我运行应用程序时(甚至在情节提要中),按钮是颠倒的。像这样:
箭头应该向上,但它指向下方。
每当我将父类更改为 NSView 时,它都会正确显示。任何想法为什么会发生这种情况/如何解决它?