Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试更改 NSPanel 的标题栏高度。我尝试了以下方法,但没有按预期工作:
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { NSRect f = [[[window contentView] superview] frame]; f.size.height += 10; [[window contentView] superview].frame = f; }
您不能更改窗口标题栏的高度。它由框架修复。如果您想要一个具有自定义外观的窗口,您需要使用NSBorderlessWindowMask样式掩码创建一个窗口,然后绘制您自己的标题栏和小部件。
NSBorderlessWindowMask