设置窗口的最小和最大尺寸
如何使用 Objective-C 库在 OS X 中设置窗口的最大和最小尺寸?
How does one set the maximum and minimum size of a window in OS X, using the Objective-C libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSWindow 类参考
NSWindow Class Reference
在 Swift 2 中,这将是:
同样根据 Apple 文档,contentMinSize 优先于 setMaxSize。
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow_Class/index.html#//apple_ref/occ/instp/NSWindow/contentMaxSize
In Swift 2 this would be:
Also according to the Apple docs, contentMinSize takes precedent over setMaxSize.
https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow_Class/index.html#//apple_ref/occ/instp/NSWindow/contentMaxSize