PaintCode NSButton显示颠倒

时间:2016-03-09 15:47:24

标签: swift nsview nsbutton paint-code

我正在使用PaintCode创建一个按钮。我导入StyleKit,并为我的RankView按钮创建NSButton类。像这样:

import Cocoa

@IBDesignable
class RankView: NSButton {

    override func drawRect(dirtyRect: NSRect) {
        super.drawRect(dirtyRect)
        StyleKit.drawRank2()

        // Drawing code here.
    }

}

但是当我运行应用程序时(甚至在故事板中),按钮是颠倒的。像这样: enter image description here

箭头应该是向上,但它指向下方。

每当我将父类更改为NSView时,它都会正确显示。任何想法为什么会发生这种情况/如何解决它?

1 个答案:

答案 0 :(得分:1)

NSButton默认使用翻转坐标(其isFlipped方法返回YES)。

要支持这些类型的视图,请在PaintCode中更改画布的原点,如下所示:

enter image description here