Re: New book on its way!!!
Re: New book on its way!!!
- Subject: Re: New book on its way!!!
- From: Aaron Hillegass <email@hidden>
- Date: Thu, 15 Apr 2004 09:54:23 -0400
Here is the progress report: The book is being printed. I would guess
that Amazon will receive it within four weeks. I've added some good
stuff, and I really hope you like it.
Of course, you can get a copy next week if you come to class at the Big
Nerd Ranch:
http://www.bignerdranch.com/classes/
(We also have a great class on Apache next month.)
And after you've read the Cocoa book, you'll want a copy of the Core
book (at the new price: $65):
http://www.atlasbooks.com/marktplc/00981.htm
Thanks,
Aaron Hillegass
Big Nerd Ranch, Inc.
(404)210-5663
Just thought i'd let everyone know BNR's own Aaron Hillegass is
releasing Cocoa Programming for Mac OS X 2nd Edition soon, you can
pre-order it from amazon -
P.S. As an apology for such a commercial posting, I've got a
"Undocumented Cocoa Tip":
Ever notice how Safari has those nice square corners at the bottom of a
textured window. How did they do that? After some head-scratching, I
found the private method on NSWindow:
- (void)setBottomCornerRounded:(BOOL)yn;
All the standard warnings about using private APIs apply: this method
may change or go away. The best way to call this method is:
if ([myWindow respondsToSelector:@selector(setBottomCornerRounded:)]) {
[myWindow setBottomCornerRounded:NO];
}
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.