Top "Animatewithduration" questions

a block-based animation method for the UIView class in iOS, to automatically "tween" animations.

using UIView animateWithDuration: delay: Xcode

I am trying to use [UIView animateWithDuration:1 delay:2 options:UIViewAnimationOptionCurveEaseIn animations:^{ } completion:^ (BOOL completed) {} ]; however no matter what number I …

iphone xcode5 animatewithduration
Whats the Swift animate WithDuration syntax?

I'm porting an older app over to Xcode 7 beta and I'm getting an error on my animations: Cannot invoke 'animateWithDuration' …

swift swift2 animatewithduration swift3 optionsettype
Smooth expanding UIView animation in Swift

Aim: How can I animate a UIView that I want to expand to fill the whole screen. The UIView needs …

ios swift animation uiview animatewithduration
How to add bounce effect to UIView animateWithDuration

I am trying to add a bounce effect to the animation below. Here is my code: [UIView animateWithDuration:1.0 delay:.0 usingSpringWithDamping:0.5 …

ios objective-c animation animatewithduration
how to add bounce animation to animateWithDuration?

I have a simple animation that im performing in my scroll view delegate method scrollViewDidEndDragging. It looks like this: - (…

ios objective-c animation core-animation animatewithduration