Tagged Questions
0
votes
2answers
27 views
Animate in curve in layer
I have been trying to do this for several days. I have an array of CGPoints that can form either a curve or straight line(freehand). I am using CALayer and want to animate it in a smoothly(like a ...
2
votes
1answer
150 views
CAAnimation with CALayers occasionally creates flickered animation (video included)
My app takes a still photo and animates the mouth region to emulate talking. However, about 1/4 of the time, some of the hidden calayers will flash continuously throughout the animation.
Here is what ...
1
vote
1answer
39 views
Push animations- I want two different animations for current View and Next View - In iPhone
I am developing a navigation based application. In this application i want some special animations for Push Pop.
I want MoveOut animation for currentViewController and FadeIn animation for ...
0
votes
1answer
25 views
is it possible to determine the Animation Order [duplicate]
I have three animations. But I want to play these respectively, not at the same time. All of animations are instance of CABasicAnimation. How can i achieve this ?
Thanks.
1
vote
1answer
133 views
How to make a menu with icons spinning in a circle?
I am trying to create a menu for my app with a few icons in a circle. User should be able to spin this menu, making the icons change their positions around this circle path, but not rotating ...
0
votes
0answers
82 views
Core Animation UILabel Tranformation
I'm currently looking into making a UIAnimation similar to the animation for the words in the game "You Don't Know Jack". I'm not too familiar with with CA animations and my effort as of now has been ...
0
votes
2answers
41 views
CALayer animation reverts
I have been trying to do CALayer animation. But after animation it reverts back.I found a few solutions like removedOnCompleteion = YES and fill mode = kCAFillModesForwards but none is helping me. ...
0
votes
0answers
139 views
Swing and Drop ImageView Animation with gravity in iphone sdk
I am making a photography based application. in this app i want swing and drop animation based on gravity. using gestures just like the app "WeHeartPics".
Here is the link of video
I have tried pan ...
2
votes
0answers
107 views
Swing Animation on basis of gravity iOS
I am developing a photography based application. In this application i need a special kind of animation. when used touches an ImageView it should swing and anchor point will be the touch point. i have ...
2
votes
1answer
50 views
Multiple CAAnimations On Different Views Simultaneously
I'm trying execute a couple of animations at the same time. One is transitioning from one uimageview to another and the other is animating translation.x of a label. The label resides on top of ...
2
votes
1answer
101 views
change color of shutter animation iphone
I am making a photography based application i have used a shutter animation for progress.
here is my code..
- (void)viewDidLoad
{
[super viewDidLoad];
[self ...
1
vote
1answer
307 views
Want to get animation like opening a camera shutter in iphone
i am making an application based on photography as per the requirement i have to show all progress or activity indicator in a menner to look it like opening camera shutter.
For better explanation see ...
1
vote
0answers
93 views
What is the maximum duration value (CFTimeInterval) for a CAAnimationGroup?
I have two rotation animations in my CAAnimationGroup, one that starts from zero and another that repeats and autoreverses from that state:
- (void)addWobbleAnimationToView:(UIView *)view ...
0
votes
1answer
67 views
CALayer setPosition not called during animation
I have a custom CALayer that I am animating using a CAAnimationGroup to follow a path and rotate at a tangent to the path:
// Create the animation path
CAKeyframeAnimation *pathAnimation = ...
0
votes
1answer
55 views
CATransaction CompletionBlock Firing Immediately
I have this piece of code that works perfectly in one of my other projects where I am achieving a 'strobe' effect of text flashing from black to white on a loop. When I copied and pasted it into ...
1
vote
1answer
84 views
Sequential CAKeyFrameAnimations disappearing on screen
EDIT: Attached code for CAAnimationGroup, the animations draw sequentially, but I'm still getting the problem that firstAnimation disappears once secondAnimation starts and I've noticed in the ...
3
votes
1answer
106 views
detect touch of subview of uiview being animated using CAAnimation
I'm trying to detect a touch on a UISubview of a view being animated
Here's my detection code:
//simple but not very elegant way of getting correct frame
CGRect keepFrame = ...
0
votes
1answer
122 views
Animate line segment in iOS
In iOS, I would like to create a line segment object and animate its start and end points (I can do this in Microsoft's WPF).
Currently, I create a line segment object as a tiny CALayer that I ...
1
vote
1answer
110 views
Image Changing CALayer Core Animation
What is the best way of changing the image of my "Sprite" before/during/after an animation?
I display the image:
CALayer *am = [[CALayer alloc] init];
am.contents = img;
am.bounds = CGRectMake(150, ...
0
votes
1answer
59 views
Animating UIView size jumps
Tyring to animate a UIView by changing its height and position. The first animation jumps? I have the size of the UIView (theView) set in Storyboards to be height of 216. So the app loads and the ...
2
votes
0answers
125 views
iOS pausing camera iris CATransition halfway
I'm trying to control the shutter animation of a custom imagepicker using
CATransition *animation = [CATransition animation];
animation.type = @"cameraIris";
and would like to pause the shutter in ...
1
vote
1answer
73 views
Animation Snaps back when the UIImage is changed
I have an UIImageView that runs across the screen when a button is pressed and held. When the button is pressed is changes the UIImage of the UIImageView and when the button is let go I change it to ...
0
votes
3answers
245 views
Move UIImage across screen using core animation
DO NOT POST ANSWERS ABOUT UIVIEW ANIMATIONS I understand UIView, I am learning core-animation. Im trying to get an image to move 50 units to the right but I am having many issues. First when the ...
0
votes
1answer
42 views
UIImage view resets after animation is called
Im new to core animation. Every time I call the animation my image moves from its location to the top left of the screen, moves, then goes back to the original location. How do I make the image move ...
0
votes
1answer
48 views
Red Box Moving in Place of UIImage View in Core Animation
My first Core Animation is just an image moving from point a to b. For some reason when the animation is called a red box appears and moves in place of my image while it just sits there.
Here is my ...
0
votes
1answer
13 views
Error on first CAAnimation Program
This is what is being called:
-(IBAction)preform:(id)sender{
CALayer *layer = [CALayer layer];
[layer setPosition:CGPointMake(100.0, 100.0)];
[layer setBounds:CGRectMake(0.0, 0.0, 50.0, 60.0)];
...
0
votes
1answer
90 views
iOS UIImageView not animating
I'm making an app and have an IBAction that is triggered when the user hits a button. Heres the code:
- (IBAction)expand:(id)sender{
UIImage *statusImage = [UIImage imageNamed:@"status.png"];
...
0
votes
1answer
98 views
UIImageView with 2 CALayers for border
I have a UIImageView that I am trying to frame with a border, by using CALayer
My border really consists of 2 borders...the inner border will be 5 pixels wide and white, and the outer border will be ...
3
votes
1answer
113 views
How to create a delayed CAAnimation that can be cancelled and/or reverted while playing?
I have a layer that I want to show when the user does an action, and hide after he is done. The layer is then shown again if the user does the action again.
In order for the UI to not go berserk with ...
0
votes
1answer
209 views
iOS rotation animation does not happen smoothly in CAAnimationGroup
I have 3 animations running in a group: position, scale and rotation
However my rotation animation does not happen smoothly. It happens abruptly in the beginning, while other animations happen ...
2
votes
1answer
109 views
How to reflect a rotated image view
I am building an iOS app and I need a way to reflect a rotating (by CABasicAnimation) image to the surface below, like a translucent material effect. Here is my code for the images named indicator and ...
0
votes
2answers
290 views
Need better and simpler understanding of CATransform3D
Please go through the images.
So this is the code which I got from some online source and it does transform my object. Besides that, I understood nothing at all. I am new to CATransform3D and want ...
0
votes
1answer
122 views
Cannot get CALayer to display in UIView
I have a simple, single-view app and for some reason I cannot get a CALayer to display in the app's UIView. The background color of the view is correct but the image in the CALayer is not visible. ...
-1
votes
1answer
160 views
How to move graphic in an arc path on iOS… as in a meter or clock face
This is the result of what I want to achieve:
I have static images for my app, but i want to add motion to them.
Imagine a meter. It has a needle that is locked at the bottom (at 6:00 on a ...
1
vote
1answer
216 views
Transforming a Stroked CAShapeLayer
I have a CAShapeLayer which contains a CGMutablePath that has a stroke drawn around it. In my app, I transform this CAShapeLayer to increase / decrease it's size at certain times. I'm noticing when I ...
2
votes
1answer
90 views
Trying to get 2 animations to work simultaneously
In the next code there are 2 methods that are called one after the other. The first one makes the center button disappear and the second one makes the tabbar disappear. Separately they are working ...
6
votes
1answer
620 views
Cannot get current position of CALayer during animation
I am trying to achieve an animation that when you hold down a button it animates a block down, and when you release, it animates it back up to the original position, but I cannot obtain the current ...
1
vote
0answers
107 views
IOS: not able to resume animation from the point when home key was pressed
I have an issue in my project where a UIView animation does not resume from the point when the home button was pressed.
These are the steps (simplified example for discussion):
1) I have a simple ...
0
votes
1answer
87 views
CAKeyframeAnimation with Path build with CGPathAddArcToPoint doesn't work
I have a keyframeAnimation and I define a Path, but the animation doesn't work.
Do you see anything wrong? :S
Here is the code:
CAKeyframeAnimation *animKF = [CAKeyframeAnimation ...
2
votes
3answers
685 views
animating the length of circular arrow mask in Core Animation
I've created a circular animation using CAShapeLayer and masking.
Here is my code:
- (void) maskAnimation{
animationCompletionBlock theBlock;
imageView.hidden = FALSE;//Show the image view
...
0
votes
1answer
78 views
How do I start ios shape animations at different times based on the position of another shape that is already moving
I'm trying to do the following animation for my iPhone App. My current thoughts are to inherit from CAShapeLayer and build up a shape that has the 3 components for the animation. I.e. the yellow ...
1
vote
1answer
687 views
CATransition Push transition replacing content early
I have a simple animation setup in a Mac App where a page control swaps out some views. I am very close to getting the paging-like animation I want, but there is a slight problem. The paging works and ...
1
vote
3answers
308 views
how to spin a image continously
i have an wheel image in .png format,i want to know how can i animate so that it rotates continously,i searched on stackoverflow and found certain snippets of code which helped me rotate my image but ...
0
votes
1answer
227 views
How can I animate a Camera Iris animation using CAFilter?
I am developing a simple camera app, where I need to animate a camera shutter opening/closing animation. I googled on CAFilter and CATransition, but got confused. How is it going to help me animate? ...
1
vote
1answer
402 views
How can I add a ripple animation using CAAnimation in UIView [closed]
I am trying to achieve a ripple effect in my iOS app where if the user touches a specific button the UIView ripples. I tried googling on this but the results got me even more confused. At some places ...
1
vote
4answers
334 views
Smoothly animated hole in CALayer?
Ok, I figured out how to do this based on various posts here on SO, and it works great. I'm working on an overlay which will basically mask the whole window except for a small region. This is for ...
0
votes
1answer
181 views
UIButton not receiving touch after superview rotate
I am working with a UICollectionView, and I have defined a custom UICollectionViewCell by subclassing that class. The initializer of the class defines two views, just like this:
[[NSBundle ...
-1
votes
1answer
66 views
CAAnimation determining which animation is which
I have three CAShapeLayer each with a different path to it, but the three of the layer is applied the same animation, which is:
[self animateToLineLayer:self.leftDottedLine_ ...
0
votes
0answers
76 views
How to make CAAnimation continue fluently when app resume from background?
I have put CAAnimation in my code. but when my app goes in background with animation, the animation will dismiss. I try this way( How to resume a CAAnimation after coming back from multitasking ) to ...
0
votes
0answers
49 views
CAAnimation & Multiple View Controllers
I have a root View Controller (VC) that manages two other VC and for portrait and one for landscape and within each of these there's a number of other VC's. One of the lower level VC's has an ...




