1
我試圖更改NSPanel的標題欄高度。我嘗試了以下方法,但並未按預期工作:在NSPanel中更改標題欄高度
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
NSRect f = [[[window contentView] superview] frame];
f.size.height += 10;
[[window contentView] superview].frame = f;
}