Questions tagged [uianimation]

411 questions
1
vote
1 answer

iOS animation queue for messages received

I have a simple animation that runs when a message is received. This works great if they are only receive one message. However if the user receives multiple messages within the animation, the animation starts over. I don't want this to happen…
Landon
  • 787
  • 1
  • 9
  • 19
1
vote
1 answer

Setting UIView with animation to default state

I have an animating sine wave in one of my view controllers that appears every time an up swipe gesture is detected and disappears when a down swipe is detected. The sine wave is a UIView and the animation translates the sine wave across the…
Brosef
  • 2,945
  • 6
  • 34
  • 69
1
vote
1 answer

PresentView and UIAnimation view conflicts?

It looks like i am having some interesting conflicts between PresentView transition and the UIAnimations. In short, the user should be able to tap on a button graphic in a view, View A. This button should pulse on tap; and then go to the next view,…
stephane
  • 172
  • 14
1
vote
1 answer

Animation does not Work as Expected While Resizing UIView

In our question module I need to resize and animate UIView when user clicked answers which are represented by tableview. I have read some related questions and applied their solution but none of them worked for me. The problem is uiview doesn't…
1
vote
0 answers

iOS all viewcontroller transitions breaks (0 time animations)

My App viewcontrollers transitions breaks after using the App for some time. The transitions still happens but the animations is done in 0 time. Status bar, navigationbar and tabbar hide animations also starts happen in 0 time. A few animatons, like…
TK421
  • 21
  • 1
1
vote
1 answer

UIImageView on Rotating moves its center

I am trying to rotate an UIImageView periodically using CGAffineTranformationMakeRotation() function..... Following is the code.... - (void)showSpinnerAnimation { rotateAngle += 3.14f; [UIView…
Arjun K P
  • 2,081
  • 4
  • 20
  • 33
1
vote
1 answer

UITableView - BeginUpdates/EndUpdates Animation Settings

I'm building a UITableView with cells that "slide out" an additional view below when selected. To do this, I've animated the row heights in the table view using [tableview beginUpdates] and [tableView endUpdates] then I'm animating the sliding view…
Matt Cooper
  • 2,042
  • 27
  • 43
1
vote
1 answer

How do I make the swipe to kill animation that is used in the iOS 7 app switcher?

I want to use a swipe animation for a custom view that is on top of the view of my UIViewController. The user should be able to swipe up the custom view to the top to send it out of the screen. Exactly like the iOS7 App Switcher gesture to kill an…
electronix384128
  • 6,625
  • 11
  • 45
  • 67
1
vote
1 answer

Call a method every time animation repeats

I need to call a certain method before my animation repeats. I don't know where to place that line of code. This is my code for animating an object: [UIView animateWithDuration:speed delay:delay …
SteBra
  • 4,188
  • 6
  • 37
  • 68
1
vote
0 answers

How to create slide-to-cancel view with ios sdk

touch and hold button - start task and show slide-to-cancel slider end touch without sliding - finish task and remove slide-to-cancel slider start sliding to right without ending touch - cancel the task finish sliding and end touch - remove…
coder1087
  • 115
  • 1
  • 2
  • 9
1
vote
1 answer

Moving content of UITableViewCell on tap

If anyone have Google+ App can certainly understand what I'm trying to implement. (explained here: UIViewController Containment with animation like Google+) I think it has something related with the new effect in iOS 7 Calendar App.(explained here:…
Fred Collins
  • 5,004
  • 14
  • 62
  • 111
1
vote
1 answer

Break in animation.

Hello people in my application I wanted to do an animation. The animation has 160 frames and I wanted it to last 10 sec and make a loop. For it created an Array with frames and a UIImageView. UIImageView *animImageView; ... NSArray *arrayAnim =…
user2274736
  • 75
  • 1
  • 5
1
vote
3 answers

In a UIView how can I chain a lot of animations to each other and have them run consecutively

More specifically I have a UIScrollView with an embedded UIImageView. I have an object which describes an "animation" frame @class AnimationFrame @property (nonatomic,strong) UIImage *image; @property (nonatomic) CGRect zoomToRectInImage; @property…
Avba
  • 14,822
  • 20
  • 92
  • 192
1
vote
1 answer

A library that wraps iOS animations the same way three20 wraps UI Classes

I found that three20 does a great job in simplifying grunt work when it comes to arranging and laying out buttons and views etc (amongst other things). I was wondering if there was something similar to that but for Animations instead. I have been…
abbood
  • 23,101
  • 16
  • 132
  • 246
1
vote
2 answers

Touch scrolling animation for list of images in iOS

My requirement is to display the list of images in horizantal way.when I touch the image it is moved to side and the next image is comes to front.In this way I need to move images side by side.Then is there any method to scroll the list of…
rani
  • 593
  • 3
  • 10
  • 28