0
我有一個編程創建的NSButton
。在所述按鈕中,我有一個NSImage作爲圖標:在NSButton中定位一個NSImage
let button = NSButton(frame: NSRect(x: 10, y: (200 + (50 * id)), width: 100, height: 50))
button.action = #selector(self.switchToView)
let img = NSImage(named: "wob_icon")
button.image = img
我想要做的是得到圖像10pt。從按鈕的左側,垂直居中。到目前爲止,圖像在水平方向和垂直方向都顯示爲中心,但由於看起來並不像我能夠定義一個框架或類似的東西,所以我無法真正移動它。
有沒有辦法在其父(按鈕)內移動圖像?
謝謝。