Re: resizing troubles
Re: resizing troubles
- Subject: Re: resizing troubles
- From: John Randolph <email@hidden>
- Date: Tue, 13 Jan 2004 15:32:22 -0800
On Jan 12, 2004, at 1:21 PM, Benjamin Salanki wrote:
- (BOOL)postsFrameChangedNotifications
{
return YES;
}
This is probably the source of your problem. Instead of overriding
-postsFrameChangedNotifications, send your view a -
setPostsFrameChangedNotifications:YES message. When the view is
resizing, it's going to check the ivar directly instead of using the
accessor.
Looking through the rest of the code you posted, I can see many other
examples of you overriding methods instead of simply setting the
appropriate state.
-jcr
John C. Randolph <email@hidden> (408) 974-8819
Sr. Cocoa Software Engineer,
Apple Worldwide Developer Relations
http://developer.apple.com/cocoa/index.html
_______________________________________________
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.