Tagged Questions
0
votes
1answer
38 views
Is there a way to do 3D transforms with keypoints?
I've created a 3D cube view transition that does the following:
Creates a layer container.
Adds the current view in 2D space.
Adds the next view to the right and rotated 90 degrees (like in a ...
0
votes
1answer
21 views
set UITextLayer text to a CATextLayer?
I have a UIAlertView that asks for input and then the input is saved to a UITextField. I then want to be able to set the string of a CATextLayer to the text of the UITextField. I can NSLog the text in ...
0
votes
1answer
55 views
UITableViewCell drop shadow not drawing for some cells
I have a custom tableview cell subclass which draws a drop shadow...
When I scroll down, some of the cells do not have their shadows drawn...
This also happens when I scroll back up.
I have ...
0
votes
1answer
56 views
How can I detect which subview is touched when dealing various moving subviews?
The following code produces an animation of an image of a shape from the top of the screen and it drifts downward using core animation. When the user taps, it will log whether the user tapped the ...
4
votes
2answers
103 views
UITableViewCell Panning to reveal options: Animated
So I have a very good implementation of panning on a tableview cell. I basically use panGestureRecognizer and move the cell off screen, and show another view below the tableViewCell. This is working ...
0
votes
2answers
101 views
How do I detect a touch event on a moving UIImageView?
When researching "How do I detect a touch event on a moving UIImageView?" I've come across several answers and I tried to implement them to my app. Nothing I've come across seems to work. I'll ...
0
votes
1answer
135 views
UIViewAnimationOptionTransitionCrossDissolve in iOS 5
Can any one give me an example showing crossdissolve effect using UIViewAnimationOptionTransitionCrossDissolve for two images.
I searched a lot but I couldn't find any good examples.
Can I get some ...
0
votes
2answers
198 views
implicit conversion from enumeration type 'enum UIViewAnimationOption to different enumeration type uiviewanimation transition
This is my code for giving a crossdissolve effect for an image
- (void)viewDidLoad
{
[super viewDidLoad];
typedef enum
{
UIViewAnimationOptionTransitionCrossDissolve,
...
0
votes
0answers
56 views
CALayer scale text animated
I have a custom CALayer that contains a CAAnimationGroup that does a bunch of animations.
One of these animations sets my scale property that's being used inside the drawInContext method.
The problem ...
1
vote
1answer
107 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, ...
1
vote
0answers
28 views
quality loss of CALayers in AVVideoComposition?
I'm using the AVVideoCompositionCoreAnimationTool to add CALayers to a captured video. The images used for the layers are fairly high-res PNGs that have so far scaled down pretty well for other uses, ...
0
votes
1answer
212 views
Change image after UIImageView had started/completed animation
I need my image view to change its .image at the beginning and end of each animation.
This is the animation:
- (void)performLeft{
CGPoint point0 = imView.layer.position;
CGPoint point1 = { ...
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
236 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 ...
2
votes
1answer
124 views
Flip and Rotate
I have 2 views. I would like a card to flip and rotate along its axis to show the other view.
So when I click on view1, view1 should flip but flip in the sense that it rotates around the y-axis to ...
0
votes
2answers
126 views
Core animation from left to right
I am building an IOS app.
I am trying to do the following core animation
Text 1 appears at the center
Then replaced by text 2 by having text 2 move from left to right to replace text 1
And then ...
0
votes
1answer
84 views
Adding sublayer to view.layer changes the frame position?
I'm adding a CALayer as a sublayer to a UIView's layer property as follows:
_graphicLayer = [[GraphicLayer alloc] init];
self.bounds = _graphicLayer.bounds;
_graphicLayer.position = ...
0
votes
1answer
138 views
Core animation layer is acting weird when presenting a modal view controller. CATransform3D issue
I am trying to create a custom UIView transition. Basically when a certain modal view is presented then the views it is covering up move into the background.
To achieve this I am using Core animation ...
1
vote
1answer
95 views
Stuttering when Drawing to Image in GCD Block
I have the following method which takes some CAShapeLayers and converts them into a UIImage. The UIImage is used in a cell for a UITableView (much like the photos app when you select a photo from one ...
2
votes
1answer
100 views
Fitting View Frame around Scaled CALayer
In the following method, I'm simply enlarging a bunch of CAShapeLayers which are attached to my views layer property by using CATransform3DMakeScale. I'm able to enlarge the shape layers correctly, ...
0
votes
1answer
54 views
How to set the Animation-Style from code?
I am replacing a view inside a navigation controller with the setViewControllers-method.
But i dont like the look of the transition. How can i set the animation-style when using the following code ?
...
0
votes
0answers
15 views
add a layer to a zero value root layer
I have a problem about layer.position. I have read some CALayer articles which told me that a layer's position specifies the location of a layer in its superlayer's coordinate system. However, if ...
0
votes
1answer
183 views
CAShapeLayer redraws itself when any other animation occurs?
I have a graphic that is comprised of CGMutablePaths. I'm taking these CGMutablePaths, and separating them into CAShapeLayers based on the different area of the graphic they represent. Below is a ...
0
votes
2answers
174 views
Move CALayer via UIBezierPath
I have a layer that will move from point A to point B on a UIBezierPath.
I have found a lot of samples those are refers to CAAnimation and UIBezierPath.
But I need to move my layer only from ...
0
votes
0answers
93 views
UIView transition Animation on multiple UIViews at once
I have a 3x3 grid of buttons that I would like to animate. When the user swipes, the first column of buttons should flip over and upon completing that animation the next column should flip and so on. ...
0
votes
0answers
143 views
CAShapeLayer freaks out when UIView Animation Occurs
I have a CAShapeLayer that consists of multiple sublayers which comprise a graphic that is made up of a lot of paths. I stored this graphic in CAShapeLayer for performance purposes not with the ...
0
votes
1answer
193 views
CALayer addAnimation:forKey: animates every property set before
So, I've got a CALayer from a UITableView instance. I first want to set a couple properties like the backgroundColor. Afterwards I add an animation that is supposed to make the reloading (-reloadData) ...
1
vote
1answer
349 views
Animate UIButton's title change
Here I found how to animate UIButton's title change using now-deprecated beginAnimations:context: method:
UIBUtton title animation for iPhone
How to do the same thing using current APIs?
Update:
...
0
votes
0answers
128 views
Strange behavior of UIView animation during transition
I'm navigating from one view controller to the next using a segue (modal). However I am using a custom segue so that no animation is involved when the transition happens. Instead i have my own ...
0
votes
1answer
417 views
apply 3d animation to view
I'm struggling with animations and can't find anything like i want. I would like to apply a 3d rotation to a view. Like a cube rotation, the view should have two images, and rotate from one to other ...
2
votes
3answers
435 views
CALayer mask not working correctly
I am trying to mask a UIView to an image using it's layer's mask property. I have seen countless examples that say, "it's just that easy". However, after quite a bit of tweaking, I cannot seem to ...
2
votes
1answer
83 views
Gesture to pop NavigationController
In Flurry for Twitter you can swipe to the right to pop the current ViewController. This is of course not difficult to implement, but in Flurry the two ViewControllers fade as you drag.
So my ...
1
vote
1answer
83 views
Middle animation in grouped table view looks horrible
I've found similar question, but there is no answer (sorry, answer just doesn't work).
So I have grouped table and I want to animate content update instead of doing [tableView reloadData].
I do that ...
0
votes
2answers
668 views
Applying a Scale AffineTransform to a UIView changes its center
I'm running this code to shrink a UIView when the user taps on its superview. However, when applying the CGAffineTransformScale(), it also changes the centre. Is that the expected behaviour?
-(void) ...
0
votes
1answer
82 views
Translation animation being ignored until second tap
I have the following code that runs whenever a tap gesture is recognised. It moves a UIImageView to the tap location and also rotates the UIImageView.
However, the translation animation never runs on ...
0
votes
0answers
121 views
Shape hints in Core Animation in order to apply clean shape tweens
I'd like to do a form tween aka shape tween using the Apple Core Animation framework. I know I'm using Flash terminology here, sorry for that. Anyway. The framework just doesn't seem to be willing to ...
0
votes
2answers
1k views
Cancelling UIView Animation - self.view.layer removeAllAnimations not working
I've got a UIView Animation going on that I need to cancel in my iOS app. I've tried this:
[self.view.layer removeAllAnimations];
But it didn't work. The animation continued. Here is my ...
0
votes
6answers
502 views
How to rotate UIViews?
The Twitter app is a tab bar app on the iPhone. Nothing in any of the tabs will rotate, yet, when you click on a link from a tweet, the view controller that is pushed on top of it IS allowed to ...
0
votes
2answers
108 views
How to move an image with a button?
I have an image(clubcow.png) that is passed from an nsarray string to make a picture. Then facedowncow represents the picture. I was wondering how to make a button that will move facedowncow to ...
0
votes
0answers
56 views
Issue positioning CAGradientLayer on top of a UIImageView
I have a UIImageView on a UIView that moves down the screen when required. The animation itself works well. However, when - after I the animation I assign the frame of a CAGradientLayer to the frame ...
3
votes
2answers
374 views
CALayer animation with CATransaction behaving differently when preceded by view resize
(iOS 5.1, XCode 4.4)
I have a CALayer whose position is first changed with [CATransaction setDisableActions:YES] (so not animated) and directly afterwards changed with [CATransaction ...
0
votes
1answer
112 views
UIView Animation Block Not Doing Anything
I have a very small animation I want to do by moving a view's frame using blocks (rather than the animation headers).
My view hierarchy is quite big so I will explain everything in regards of the ...
3
votes
1answer
540 views
How to recreate Jetsetter's iOS teaser photo & photo viewer slideshow transition?
One of the more impressive iOS app that I've come across is Jetsetter's due to its great design, incredible interface, and creative uses of animation. One of my favorite components of the app is the ...
1
vote
2answers
64 views
How can I debug a crash being triggered by a CoreAnimation call from UIKit?
I have some basic animation in an iOS app I'm creating that has behaved completely fine... until yesterday.
I apparently made a change that somehow affected it, and I'm having trouble identifying ...
0
votes
1answer
153 views
CALayer not implementing custom drawLayer:inContext: method
I saw this solution while researching for CALayers. I was looking for a way to implement custom drawings inside a UIView with multiple sublayers. I named my sublayers like this:
layer1.name = ...
2
votes
1answer
170 views
Drawings in UIImage are being distorted
I have implemented a highlight function in my app. This highlight is being drawn in UIImage so that it can be saved as a PNG Representation. Everything is working perfectly but recently I realized ...
0
votes
2answers
607 views
Getting a UIKeyboard related animation just right
I am currently using keyboardWillShow and keyboardWillHide notifications to animate a user interface element in response to a UIKeyboard appearing on the screen.
I am calling a method
- (void) ...
0
votes
1answer
395 views
Using a CGPoint and CATransform3D to find a new point on a line?
I have a layer with a CAKeyframeAnimation that is animating it along a path. The layer also has a changing transform property as the animation's rotationMode is set to kCAAnimationRotateAuto.
When I ...
