We've noticed that disabling expand/collapse animations isn't respected under
Mavericks (still works fine in Lion/ML) - is there a specific way to avoid it
in Mavericks?
Tthe trick we use (as per Apple):
- (void)expandItem:(id)item expandChildren:(BOOL)expandChildren
{
[NSAnimationContextbeginGrouping];
[[NSAnimationContextcurrentContext] setDuration:0];
[super expandItem:item expandChildren:expandChildren];
[NSAnimationContextendGrouping];
}
_______________________________________________
Cocoa-dev mailing list ([email protected])
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:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com
This email sent to [email protected]