我和斯威夫特一起为osx工作,我有一个nstoolbaritem。
此工具栏项太大。
我想把它小一点。
我试过这个:

@IBOutlet weak var toolbarItem: NSToolbarItem!
toolbarItem.maxSize = NSSize(width: 15, height: 15)

但工具栏项图像的大小没有更改:(

最佳答案

maxSizeminSize仅在为工具栏使用自定义视图时适用。

toolbarItem.view = MyCustomControlView(frame: someRect)
AppKit控件只服从包含工具栏的sizeMode
有关详细信息,请参见the documentation

关于swift - nstoolbaritem大小OS X,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45346625/

10-09 16:17