/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
- (id)initWithContentRect:(NSRect)contentRect styleMask:(unsigned long)aStyle backing:(NSBackingStoreType)bufferingType defer:(BOOL)flag { self = [super initWithContentRect:contentRect styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuffered defer:YES]; [self setMovableByWindowBackground:YES]; [self setBackgroundColor:[NSColor clearColor]]; [self setLevel:NSNormalWindowLevel]; [self setOpaque:NO]; [self setHasShadow:YES]; return self; }