Mon application Cocoa a besoin de petites fenêtres générées dynamiquement. Comment puis-je créer par programme des fenêtres Cocoa à l'exécution?
Ceci est ma tentative infructueuse jusqu'à présent. Je ne vois aucun résultat.
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];