Re: NSCollectionView
Christiaan Hofman <[email protected]>
| Newsgroups | gmane.comp.macosx.devel |
|---|---|
| Message-ID | <[email protected]> |
On Dec 9, 2009, at 19:52, parfeon wrote: > > Hello everyone. > > Today I finally put my hands over grid view of application, which I decided > create based on NSCollectionView. Everything works great, except that fact, > what I can't find out how to stop core animation, to make Collection items > not slide on view resize, and don't fade in/out. > > Is it possible to make? Google don't give me an answer at all :( > I hope someone already stumbled with this problem and can help. > > Thanks, > Sergey Mamontov If the API does not provide a method to disable animations (and it doesn't) than you can't. The best you can do, I think, is bracket every method that leads to an animation by an animation grouping setting the duration to zero. Christiaan