Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changing frame inside of NSCollectionView



Hey all,

I'm using NSCollectionView in a pet project of mine and I'm using it to create a list of items. I've got the NSView drawing already complete but I'm having issues trying to resize it once it's in the Collection View. Pretty much what I'm doing is this...I'm trying to keep it minimalistic, if the user selects an item it expands showing some extra optional information that was previously hidden.

I've tried setting the frame with the following code...(which resides inside of the view I'm resizing)

...
NSRect oldFrame = [self frame];
NSRect newFrame = NSMakeRect( oldFrame.origin.x, oldFrame.origin.y, NSWidth(oldFrame), NSHeight(oldFrame) -100);

[self setFrame: newFrame];


[[self superview] setNeedsDisplay: YES];
[self setNeedsDisplay: YES];
...

I even added the [[self superview] setNeedsDisplay: YES] to try and get the superview to redisplay/recalculate position of objects. I've tried enlarging the height and shrinking it and it still displays as the same thing on screen.

Any ideas?

Thanks,
Tim
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/email@hidden

This email sent to email@hidden


Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.