1
vote
2answers
33 views

UIView animations do not work when a delayed animation is added

I'm trying to move a UILabel twice but I'm getting strange behaviour. Here was my first animation: - (IBAction)doAnimation:(id)sender { CGRect labelFrame = self.label.frame; CGRect newFrame = ...
0
votes
2answers
32 views

animatewithduration exponentially get faster

I am currently developing an iOS app. In the app I have blocks(UIView's) falling from the top of the screen using a uiview animatewithduration. I am looking to have them exponentially get faster as ...
0
votes
2answers
36 views

Draw graph on uiview with animation

Hello Everyone, I would like to create a similar view like in the attached image. I can do this easily with the help of UITableView but I also want to draw a graph above of this tableView. I am ...
0
votes
1answer
20 views

UIViewAnimation from view and back

I have a question regarding transitioning between uiviews. I have a view1 that transition to view2, but when i want to transition back it doesn't work. Action called on first view to flip to the ...
0
votes
0answers
37 views

Reuse same UIView for Left to Right Animation side by side

I have created UIView in XIB. I want to animate this view from Left to Right 2 times that too SIDE BY SIDE. Below code animates the UIView but this code animates one by one transition of this UIView. ...
1
vote
1answer
30 views

cocoa touch trying to delay the animation of the uiview before it pops out again

I have a UIView that serves as the container for 2 tableviews. I have two buttons that controls how data is loaded on those tableviews. Basically when 1 button is tapped the uiview slides out to show ...
0
votes
1answer
36 views

Is there a simple and elegant solution to put UIView animation(animating pngs) from processing with CPU to GPU?

In my app I'm using lot of UIView animations (animating pngs). Is there a simple and elegant solution to put all this UIView image animation from processing with CPU to GPU? It's worth it?
2
votes
3answers
106 views

How to stop and reverse a UIView animation?

I have animated a UIView so that it shrinks when the user touches a toggle button and it expands back to its original size when the user touches the button again. So far everything works just fine. ...
-2
votes
0answers
30 views

Transition between view in iOS [closed]

I would like change my view in my application. I have a "Facebook" menu, and I would like that my page arrived than in Facebook app : when I click on the button, the view change in the app and the ...
0
votes
1answer
42 views

UIView animateWithDuration artefact (blinking white vertical line on view)

I have simple blinking animation for digits divider in digital clock. views hierarchy looks like this: ClockBGView StartButton ClockView When StartButton pressed ClockView become visible (it is ...
0
votes
1answer
69 views

UIView unchanged when modified from dispatch_async

I have a subview with live view from the back camera. I am animating it when toggling the camera to front. Because I could't sync the animation and the toggle, I covered it with another view with ...
0
votes
1answer
46 views

UITableView emerge from right on UIView

I'm trying to make my first animation. Currently I'm using animateWithDuration:animations and transitionFromView:toView:duration:options:completion:, but I'm not sure if I'm in "correct page". What I ...
1
vote
1answer
51 views

Radians value went wrong for CGAffineTransformRotate

I'm trying to rotate the bicycle wheels when I rotate the pedal. When I rotate counterclockwise, there is no problem. But when I rotate clockwise for about 2-3 secs, the image starts to rotate ...
0
votes
2answers
62 views

How do I redraw a UIView's sublayers as I'm animating the UIView's bounds?

I have a UIView with several custom-drawed sublayers (a few CAGradientLayers with CAShapeLayer masks, etc.). I'm using the UIView animation method to animate it's bounds (increasing both its width and ...
3
votes
1answer
51 views

UIView animation warning

I am using following code [UIView animateWithDuration:1.0 delay:0.05 options:UIViewAnimationCurveEaseIn animations:^{ ...
2
votes
2answers
120 views

Animating a box drawn in drawRect via CGMutablePathRef

my aim is to drow an empty rounded box, that should appear as a hole, onto my UIView to show what's under. I made this by overriding drawRect method as shown below. This gives me the ability to ...
1
vote
1answer
95 views

how to pause and resume an uiview animation when button clicking? [duplicate]

i have scrollview, which has zoomscale property inside uiview begin animation,it animates well for some duration,but in between these animations i want to pause the animation and resume the ...
0
votes
0answers
45 views

UIViewAnimationOptionCurveLinear trouble on iPhone 5

Ok, so I have this animation [UIView animateWithDuration:1.5 delay:0.0 options:UIViewAnimationOptionCurveLinear animations:^(void){ self.center = CGPointMake(velocity.x+self.frame.origin.x, ...
0
votes
1answer
67 views

UIView transition - flip two subviews [duplicate]

In a UIView subclass (mainView) I do this: [UIView transitionFromView:firstView toView:secondView duration:3 ...
0
votes
1answer
35 views

UIViewAnimation setAnimationDidStopSelector Undeclared Selector, Will It Crash?

i would like to know what happens when you assign a selector to animationDidStopSelector that is not declared. For example: [UIView setAnimationDidStopSelector:@selector(doThis)]; i have this ...
2
votes
2answers
104 views

UIView animation iOS, Bizzarre

I am probably doing something extremely stupid but I cannot figure out why this does not work. I am trying to perform a simple UIView block animation but have run into trouble. I have recreated in a ...
-1
votes
2answers
76 views

UIView animateWithDuration results in the same location every time [closed]

I have a UIView called logoview. [logoview setCenter:CGPointMake(100,100)]; [UIView animateWithDuration:4 delay:1 options: ...
0
votes
0answers
18 views

How to move a UIView up 90 pixels?

In the app I'm making I need to move a UIView's center up by 90 pixels in about half a second, I tried using the UIView animations but it didnt work and I deleted the code. Can someone help me out?
1
vote
1answer
75 views

How to create custom UIViewAnimation

What is the simplest way to create a custom UIView animation transition? Most of the tutorials that pop up in a Google search are not recent. (I'm using XCode 4.5 version) In my current iPhone app I ...
0
votes
1answer
59 views

Animate UIView calling a metod

I have a function which should be start the animation. The triangle is designed in "drawrect", and I have a button in a controller, and when it's pressed, it calls "startTriangleAnimation". The ...
1
vote
1answer
94 views

View not animating with Autolayout

I've been searching around SO and have found some related posts, but none that have (yet) solved my problem. I have a view setup in my storyboard, with a constraint hooked up through an IBOulet. ...
2
votes
4answers
124 views

Trying to animate two UIViews simultaneously, only one moves

I'm trying to create an animation in my iOS app where a new view slides on screen from the left while the main view slides to the right to make room for it. The main view is a subview of my view ...
0
votes
1answer
115 views

UIView animation with a bow, not in a straight line

I want to have my animation with a bow and not in a straight line. This is my code: UIImageView *logoImageView = [[UIImageView alloc] initWithFrame:CGRectMake(-125, 100, 125, 125)]; ...
0
votes
1answer
281 views

Using UIViewAnimationTransitionFlipFromRight to flip over a UIButton when pressed and show a new button on “the other side”

EDITED For MOXY. I have an array of buttons with an image on top and array of buttons whose views are background colors. When i click on a button i want to retrieve that button index and use that ...
0
votes
1answer
87 views

iOS - How do I perform two transitions sequentially?

I have taken some code from other SO questions, but I must be doing something wonky. The app jumps from the first view to the third. What I'm trying to achieve is: ViewController 1 Image 1 - loads ...
0
votes
2answers
186 views

iOS: Animate subview without calling layoutSubviews

In layoutSubviews i layout my child views into appropriate positions, and for some of them apply some transformation. Now i want to make on this subviews repeatable scale animation to draw attention. ...
0
votes
1answer
36 views

UIViewAnimation Flip not working

In a UIView subclass I have this: self.frontImageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"front"]]; self.backImageView = [[UIImageView alloc] initWithImage:[UIImage ...
0
votes
0answers
49 views

bug annimation on ios 5/5.1

I don't have the same result for this simple animation, it works fine on ios 6/6.0.1 but not on ios 5/5.1 it doesn't have a same comportment. [UIView animateWithDuration:0.4 delay:0 ...
0
votes
1answer
47 views

UIView origins remain 0 even after setting the frame

I have 2 views in my UIViewController. I initialized these views in my viewDidLoad like this: _view1 = [[UIView alloc]initWithFrame:CGRectMake(0,0,200,150)]; [_view1 setBackgroundColor:[UIColor ...
0
votes
1answer
59 views

one method calling another forever, will this cause any problems?

I have written a little customer survey application and at the top I have an image of a car and a van that i pretend are zooming round. But the way I have coded it turns it into an infinate loop where ...
0
votes
0answers
41 views

Animate UIView from tableViewHeader to the frame of subview in the first cell

I'm trying to find the solution for this: When tapping one of the pills that appear in the tableViewHeader, it adds the text to a UITextField in row 1 of the table. I would like to also animate this ...
2
votes
2answers
222 views

UIView animation sequence make Repeat and Autoreverse

How to make this complex animation repeat and autoreverse? Is there any way to add options UIViewAnimationOptionAutoreverse | UIViewAnimationOptionRepeat to this animation sequence? [UIView ...
0
votes
1answer
105 views

How ro run code after UIView transitionWithView

I want to run a block of code after animations completed but the compiler shows the following error : "Incompatible block pointer types sending 'void (^)(void)' to parameter of type 'void (^)(BOOL)'" ...
0
votes
1answer
99 views

iOS: jumpy animation when changing orientation, setFrame

I'm using the code below to set up a view when the orientation changes on an iOS device. This works to give me the shape I want (wider and same height), but the animation is jumpy when changing ...
0
votes
1answer
139 views

UIView animateWithDuration interfering with other CGRectMake

I have a CGRectMake that used to jump an image to a different position image.frane=CGRectMake( x,y,w,h); Then I wanted to translate and scale a Label (on the same ViewController) to another ...
-3
votes
2answers
319 views

How to move texts from left to right in iPhone app programmatically? [closed]

Am working in iPhone application. I want to show some texts/alerts from webservice in my app like moving texts (Scrolling with animation from left to right). I don't know how to do this? The alert ...
0
votes
1answer
97 views

How to animate zooming UIView WITH SUBVIEWS?

This code does the following: It takes a 'snapshot' of a NavigationController meant to disappear. Then the snapshot is added to the view of a container view controller, slides away and reveals the new ...
0
votes
1answer
111 views

UIView Animation pause resume using CALayer freezes user interaction upon orientation change

I am implementing the following solution to pause a UIView animation: http://stackoverflow.com/a/3003922/1014164 Pausing and Resuming animation is working, HOWEVER: After I have paused my ...
0
votes
0answers
37 views

UIView transition not animating, just popping up

Got this method. It just pops up the final view without animating - appreciate some pointers. I want the final image to flip in from the background not just pop up. - ...
0
votes
2answers
71 views

Creating a uiview animation “drone” or “slave”?

I have created a uiview subclass, and instantiated it (lets call it the master view). This uiview subclass contains it's own gesture recognizers and touch event overrides as well as the animations ...
0
votes
0answers
164 views

Using transitionWithView and animateWithDuration at the same time

I'm working on a card game for iOS. In the card game I have a CardView. A card view is an extension of UIImageView. A user can move cards around in the app and can flip cards over. There are some ...
0
votes
1answer
49 views

Reusable UIView Animation

Consider this basic view animation. It will scale a view down to nothing over the course of 1 second: [UIView animateWithDuration: 1.0 delay: 0.0 options: ...
0
votes
2answers
176 views

animate image/UIView iOS

On the homepage of my application I want to animate a PNG image sliding into the view, then sliding out again before a second image slides in, then out. Time just for the viewer to read before each ...
0
votes
0answers
101 views

Why UIView completion handler fired before it complete animation?

guys i have the following code: - (void)viewDidAppear:(BOOL)animated { CGRect LogoFrame = self.logo.frame; LogoFrame.origin.y = LogoFrame.size.height; ...
0
votes
1answer
65 views

Auto Adjust subviews in a UIView

I have no.of subviews added in the UIView, at runtime I am changing the frame(increasing) of the UIView with the basic UIAnimations. But the subviews which I have added are not proportionately ...

1 2 3 4