[MEET] Syracuse Area CocoaHeads

2008-08-09 Thread Michael Fey
Folks, Just a small note that we will be meeting a couple of days earlier than the usual time. Plan to get together with us at the Fayetteville Free Library on this Tuesday August 12th at 7PM EST. See http://fruitstandsoftware.com/CocoaHeads/ for maps and more info. Regards, Micha

Re: Design question

2008-07-14 Thread Michael Fey
I'd agree with what I.S. said, make sure you read up on and run through some tutorials for coding a table and its data source by hand. Aaron Hillegass does a great job of this in Cocoa Programming for Mac OS X. As a Cocoa newbie this is a great book to hit the ground running. It assumes

Re: [MEET] CocoaHeads Mac Developer Meetings

2008-07-04 Thread Michael Fey
On Jun 30, 2008, at 2:21 AM, Stephen Zyszkiewicz wrote: CocoaHeads is an international Mac programmer's group. We specialize in Cocoa, but everything Mac programming related is welcome. Upcoming meetings: * Syracuse, NY - Thursday July 10, 2008 07:00 PM EST. Check out http://fruitstandsoftwar

Re: Resizing NSView with CABasicAnimation

2008-04-16 Thread Michael Fey
Bill, Given that you've "written the book" on Core Animation, I really appreciate your insights. Since my view is layer backed (I called setWantsLayer:YES on a parent view), then my call to [[self layer] addAnimation...] should be [self addAnimation] instead? The other thing that I'm no

Resizing NSView with CABasicAnimation

2008-04-15 Thread Michael Fey
alue valueWithRect:[self frame]]; resizeAnimation.toValue = [NSValue valueWithRect:largerRect]; [[self layer] addAnimation:resizeAnimation forKey:@"frame"]; Thanks for any insights. Regards, Michael Fey ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.co

Re: Creating Custom Views in Interface Builder

2008-03-18 Thread Michael Fey
here I need it. Thanks again! Warm regards, Michael On Mar 14, 2008, at 2:43 PM, Jacob Lukas wrote: Whoops meant to hit "Reply All" On Mar 14, 2008, at 14:33, Michael Fey wrote: Hello List! I am trying to create a custom view class using Interface Builder that I can then instant

Creating Custom Views in Interface Builder

2008-03-14 Thread Michael Fey
Hello List! I am trying to create a custom view class using Interface Builder that I can then instantiate within my code as many times as needed. In this particular case I have a control that I've created that contains a progress bar, two text fields, two buttons, and an image view. I t