I have some NSViews that I insert into one of two layouts depending on the size of my window.
I adjust the layout when the corresponding supervisor gets the resizeSubviewsWithOldSize method.
This works, but I would like to revitalize the change. Therefore, of course, I tried calling the animator proxy when I set new frames, but the animation will not work while the user is still dragging. If I release the mouse until the animation is planned, I can see the tail of the animation, but nothing before that. I tried to make sure kCATransactionDisableActions is set to NO, but that didn't help.
Can I start a new animation and start it while resizing?
source
share