Re: Playing videos on CALayer ?

2022-03-28 Thread Felix Franz via Cocoa-dev
Currently, my app displays images on a CALayer, with some basic animation like so:      CABasicAnimation * anim = [CABasicAnimation animationWithKeyPath: @"bounds.size"]; Now, I would like to include videos, too. So, first of all, how would I put videos on such a CALayer, so that

Playing videos on CALayer ?

2022-03-28 Thread Gabriel Zachmann via Cocoa-dev
Currently, my app displays images on a CALayer, with some basic animation like so: CABasicAnimation * anim = [CABasicAnimation animationWithKeyPath: @"bounds.size"]; Now, I would like to include videos, too. So, first of all, how would I put videos on such a CALayer, so that they get