Questions tagged [uianimation]
411 questions
8
votes
1 answer
Multi step form progress in ios applications
Is there any library for creating multi step form progress in ios applications similar below image

Nassif
- 1,113
- 2
- 14
- 34
8
votes
4 answers
Stop UITableViewCells from animating when animating a UITableView
I am animating a UITableView. I want the table view to slide open like this:
http://www.youtube.com/watch?v=XIGJLbiRsXE
However, it opens like this:
http://www.youtube.com/watch?v=UJUX-ILCB_0
Notice how the table cells themselves are animating. …

dragosaur
- 818
- 1
- 8
- 10
7
votes
2 answers
How to animate incrementing number in UILabel in swift
I have a label showing a number and I want to change it to a higher number, however, I'd like to add a bit of flare to it. I'd like to have the number increment up to the higher number with an ease-in-out curve so it speeds up then slows down.…

Ravi Kanth Manne
- 83
- 1
- 6
7
votes
2 answers
UIView animation trying to change the frame size doesn't work in iOS 8 but in iOS 7
I wanted to resize an UIView, my code works perfect in iOS 7.1 but when I run it in iOS 8 it didn't work properly (I will explain below).
I have my UIView int the storyboard with values (0,67,511,320), I want to resize to full screen on iPad, so I…

ƒernando Valle
- 3,634
- 6
- 36
- 58
7
votes
1 answer
UIView animation prevents touch events?
On Objective-C when animation starts on the UIView, no touch interaction is accepted. how can we handle this?

erdemgc
- 125
- 1
- 9
7
votes
1 answer
Problems with transitionWithView and animateWithDuration
I have problems with transitionWithView and animateWithDuration. One of my animateWithDuration blocks doesn't transition, it is a sudden change, and transitionWithView does not temporarily disable user interaction. I have checked the docs and…

Patrick Veilleux
- 471
- 1
- 4
- 17
6
votes
1 answer
UItableViewCell Expand/Collapse Animation (Works when expanding, but not collapsing)
just as a background, this question is related to this one I posted earlier: Trying to expand/collapse UITableViewCell from a UIButton on the custom cell
To summarize, I have a UITableView with several custom table cells. Each custom…

kurisukun
- 3,149
- 5
- 37
- 69
6
votes
1 answer
push uiviewcontroller to another viewcontroller with animation from Top - bottom
In my project there is feature when user swipe on top bar one screen will appear with top to bottom animation
There are two view controller
oneviewcontroller.m
- (void)swipe
{
listViewController *list_obj=[[listViewController alloc]…

iOS developer
- 131
- 1
- 1
- 9
6
votes
2 answers
ImageView animation, looping through images
So I want to animate a UIImageView on a load screen and I've been told that the built in "animationImages" method takes up a lot of memory and is bad programming so I won't use that, I also had issues with it but that's besides the point.
The code…

Echizzle
- 3,359
- 5
- 17
- 28
6
votes
0 answers
How to do presentViewController transition from Right to left and dissmissViewController for it reverse?
for transition from one viewController to another view i wrote code below like this
if (UIInterfaceOrientationIsLandscape(STATUSBAR_ORIENTATION)) {
transition = [CATransition animation];
transition.duration = 0.3;
…

RameshIos
- 301
- 1
- 4
- 13
6
votes
2 answers
How do I wait for one animation to finish before the next one starts in Swift?
How do I wait for one animation to finish before the next one starts in Swift? I have been messing around with if animation.animationDidStop... {}, but it won't work.
Here's some of my code so far:
class ViewController: UIViewController {
@IBOutlet…

user3157462
- 61
- 1
- 3
6
votes
2 answers
Recreating iOS 7 Calendar UIView Animation
Everybody knows the brand-new awesome animation inside iOS 7 Calendar app. You can see them in this short video: http://vimeo.com/69247779
I would recreating something like that creating a "modal" rectangle that appear when the user taps on a…

Fred Collins
- 5,004
- 14
- 62
- 111
6
votes
2 answers
Animation like Radar Objective C
How i can do a UIView animation like a radar?
I already have a UIView with the circles created with drawrect, but how i can create a line, doing a clock animation?
Like the image below :

darkman
- 993
- 3
- 13
- 31
6
votes
2 answers
UIButton adding color with animation
What i want to do is, when the user clicks the button then the button should fill with color with animation from bottom to top.
I tried this which added the color but the animation effect was not added.
float originalY = btn.frame.origin.y;
float…

Prashant Chaudhari
- 1,239
- 1
- 9
- 18
6
votes
1 answer
ios animation like emailing photo
I'm really curious as to how apple does this transition: If you go to a photo within the photos app, then try to send it in an email, you'll see this pretty cool transition where Apple grabs the image, slides up a modal email vc, then places the…

Sean Danzeiser
- 9,141
- 12
- 52
- 90