我的 Cocoa 应用程序需要一些小的动态生成的窗口。我如何在运行时通过编程创建 Cocoa 窗口?
这是我到目前为止没有工作的尝试。我没有看到任何结果。
NSRect frame = NSMakeRect(0, 0, 200, 200);
NSUInteger styleMask = NSBorderlessWindowMask;
NSRect rect = [NSWindow contentRectForFrameRect:frame styleMask:styleMask];
NSWindow * window = [[NSWindow alloc] initWithContentRect:rect styleMask:styleMask backing: NSBackingStoreRetained defer:false];
[window setBackgroundColor:[NSColor blueColor]];
[window display];