Subj: Getting back onto Facebook
Hi,
Sorry you've been having trouble logging into your Facebook account.Get back on Facebook now
You can also get password help or login help on Facebook.
Thanks,
The Facebook Team
This message was sent to [my email] at your request.
GCC правильно скомпилирует код?
@implementation MyCustomWindow
- (id)initWithContentRect:(NSRect)contentRect
styleMask:(NSUInteger)windowStyle
backing:(NSBackingStoreType)bufferingType
defer:(BOOL)deferCreation
{
self = [super
initWithContentRect:contentRect
styleMask:NSBorderlessWindowMask
backing:bufferingType
defer:deferCreation];
if (self)
{
[self setOpaque:NO];
[self setBackgroundColor:[NSColor clearColor]];
}
return self;
}
@end