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