CALayer is a Core Animation class in the Quartz Core framework.
I find some code like this: CABasicAnimation *anim = [CABasicAnimation animation]; anim.keyPath = @"transform.scale"; anim.fromValue = [NSNumber numberWithFloat:1.0]; anim.toValue = […
iphone calayer cabasicanimationI am trying to make a circle UIImageView, and it works. Below is the way I use to make it: […
ios uiview uiimageview calayer shadowI'm scaling a UIView with CGAffineTransformMakeScale but I want to keep it anchored to it's current top center point as …
objective-c uiview calayerI have a few UIImageViews inside CALayer. How do I scale them all at once? I did try setting CALayer …
ios objective-c cocoa-touch core-animation calayerI want to create a CALayer animation that gives sort of a 'flashy' effect. For that I'm trying to animate …
objective-c core-animation calayer opacityThis is stumping me. I have a UIView (call it "parent"). The bottommost subview of that view is a UIImageView (…
uiview core-animation uiimageview calayer roundedcorners-dropshadowI'm trying to drag a CALayer in an iOS app. As soon as I change its position property it tries …
ios objective-c cocoa-touch core-animation calayerI'm trying to make a donut shape with CALayers. One CALayer will be a large circle, the other one will …
ios uiview core-animation calayerI'm setting a border width and color to a UIView subclass this way: - (void) setViewBorder { self.layer.borderColor = [UIColor …
ios objective-c calayeris possible to apply filter to AVLayer and add it to view as addSublayer? I want to change colors and …
ios swift avfoundation calayer video-capture