"CABasicAnimation" is the most basic explicit animation in Core Animation.
Before this code, my movie pic alpha is set to 0, CABasicAnimation* fadein= [CABasicAnimation animationWithKeyPath:@"alpha"]; [fadein setToValue:[NSNumber numberWithFloat:1.0]]; [fadein …
ios core-animation alpha cabasicanimationAccording to the docs, the way to repeat a CABasicAnimation forever is to set its repeatCount to HUGE_VALF. But …
swift cabasicanimationI am trying to delay the animation of layer's opacity and position by 3 seconds using setBeginTime. I have called the …
ios layer cabasicanimationI have 3 views dynamically created by using for loop. in that i called the below method for rotation animation - (…
iphone ios uiview touch cabasicanimationIt should be something really simple, but I have not been successful in getting this to work using blocks. There …
ios core-graphics uiviewanimation cabasicanimationI am drawing a circle, with an initial radius of 200 self.circle = [CAShapeLayer layer]; self.circle.fillColor = nil; self.circle.…
objective-c ios cabasicanimation cashapelayerI'm trying to animation the transition of a CALayer from normal corners to rounded corners. I only want to round …
core-animation calayer uibezierpath cgpath cabasicanimationI have the following code to animation bounds property of CALayer using CABasicAnimation. But the code doesn't seem to work. …
swift bounds cabasicanimationCould someone please provide me with an example of animating the opacity of an Image View in swift?? I couldn't …
swift uiimageview core-animation cabasicanimation nsvalueThe small scale animation works as expected but the scale animation to return to the normal size does something weird; …
swift xcode6 cabasicanimation