active questions tagged core-animation - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T10:29:07Z http://stackoverflow.com/feeds/tag/core-animation http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/670562/can-i-move-the-origin-when-doing-a-rotation-transform-in-quartz-2d-for-the-iphone 1 Can i move the origin when doing a rotation transform in Quartz 2D for the iPhone? Skyler 2009-03-22T04:48:14Z 2009-12-12T08:37:10Z <p>Sorry if this is obvious or covered elsewhere, but i've been googling all day and haven't found a solution that actually worked.</p> <p>My problem is as follows: I am currently drawing an image in a full screen UIView, for examples sake we'll say the image is in the bottom right corner of the UIView. I'd like to do a rotation transform(CGAffineTransformMakeRotation) at the center of that image, however, by default the rotation command rotates around the center of the UIView it self. As a result, my image moves around the screen when i rotate instead of it staying in place and rotating around its own center.</p> <p>From what i've gathered, i need to translate my context so that the origin(center of the UIView) is at the center of my image, Rotate, and then restore the context by translating back to the original spot.</p> <p>The following is the closest thing i've gotten to work, but the problem is that while the image is rotating, it moves downward while it's rotating. I think this is caused by animation tweening the 1st step translate and 3rd step translate instead of just realizing that the beginning and end point on the translates would be the same...</p> <pre><code>// Before this i'd make a call to a function that draws a path to a passed in context CGAffineTransform inverseTranslation = CGAffineTransformMakeTranslation( transX, transY ); CGAffineTransform translation = CGAffineTransformMakeTranslation( -transX, -transY ); CGAffineTransform rot = CGAffineTransformMakeRotation( 3.14 ); CGAffineTransform final = CGAffineTransformConcat( CGAffineTransformConcat( inverseTranslation, rot ), translation ); // Then i apply the transformation animation like normal using self.transform = final etc etc </code></pre> <p>I've also tried stuff like CGContextTranslateCTM and CGContextSaveGState/UIGraphicsPushContext, but these seem to have little effect.</p> <p>I've been fighting with this for days and my current solution seems close, but i have no clue how to get rid of that translating tweening. Does anyone have a solution for this or a better way to go about this?</p> <p>[update] For the time being i'm drawing my image centered at the UIview's center and then setting the UIView.center property to the origin i'd like to rotate and then doing the rotate command. Seems like a bit of a hack, but until i can get the real translates working it's my only choice. Thanks!</p> http://stackoverflow.com/questions/1892383/want-to-have-a-calayer-to-display-inside-the-window 0 Want to have a CALayer to display inside the window Charles 2009-12-12T05:12:38Z 2009-12-12T05:12:38Z <p>I'm trying to get a CALayer with a black background to display. I've attached the AppDelegate as the delegate to the file's owner. The console reports correctly the "awaking from nib..." log statement. I however, just see a blank grey window (335x390 in size), with no black box drawn in the middle. What concept am I missing?</p> <p>Thanks in advance for the help,</p> <p>Charles</p> <pre><code>#import "AppDelegate.h" #import &lt;QuartzCore/QuartzCore.h&gt; @implementation AppDelegate -(void)awakeFromNib; { NSLog(@"awaking from nib..."); [[window contentView] setWantsLayer:YES]; layer = [CALayer layer]; [layer setBounds:CGRectMake(0.0,0.0,100.0,100.0)]; // center the animation layer [layer setPosition:CGPointMake([[window contentView] frame].size.width/2, [[window contentView]frame].size.height/2)]; CGColorRef color = CGColorCreateGenericRGB(1., 1., 1., 1); [layer setBackgroundColor:color]; CFRelease(color); [layer setBorderWidth:5.0f]; [[[window contentView] layer] addSublayer:layer]; } @end </code></pre> http://stackoverflow.com/questions/1883927/residual-trace-in-core-animation-calayers 0 Residual/trace in Core Animation & CALayers ivanTheTerrible 2009-12-10T20:51:04Z 2009-12-11T20:04:18Z <p>I am making an Cocoa app, using Core Animation to create custom UI. However, whenever I drag some layers around, they often leave some "residuals/traces" onto the other layers.</p> <p>So far, my guess is that it is related to my usage of <strong>[setNeedsDisplay]</strong>. To my understanding, as I drag a layer around, I don't need to call this method to that layer (as nothing is updated within that layer). But the residuals that left behind are on other layers (so maybe they need to call that method? But then how do I know which layers the dragging mouse has passed over?)</p> <p>I am wonder what could be a cause of this? This problem is difficult to show specific code examples, but some hints or possible guesses are welcome.</p> http://stackoverflow.com/questions/1887156/resize-and-move-a-uiview-with-core-animation-cakeyframeanimation 0 Resize and move a UIView with Core Animation (CAKeyFrameAnimation) ACBurk 2009-12-11T10:24:10Z 2009-12-11T13:38:50Z <p>Is this possible? I can change the opacity and position (center) of the layer but whenever I try to change the size or origin, it doesn't work.</p> <pre><code> CAAnimationGroup* anigroup = [CAAnimationGroup new]; CGMutablePathRef thePath = CGPathCreateMutable(); CGPathAddRect(thePath, NULL, CGRectMake(0,0, 320, 480)); CGPathAddRect(thePath, NULL, CGRectMake(location.x - 16,location.y-24, 32, 48)); CGPathAddRect(thePath, NULL, CGRectMake(190, 20, 32, 48)); CAKeyframeAnimation* AniLoc = [CAKeyframeAnimation animationWithKeyPath:@"frame"]; AniLoc.path = thePath; AniLoc.keyTimes= [NSArray arrayWithObjects:[NSNumber numberWithFloat:0.0f], [NSNumber numberWithFloat:0.3f], [NSNumber numberWithFloat:1.0f],nil]; AniLoc.duration = 5; CFRelease(thePath); anigroup.animations = [NSArray arrayWithObjects:AniLoc,nil]; anigroup.duration = 5; [focusview.layer addAnimation:anigroup forKey:nil]; </code></pre> http://stackoverflow.com/questions/1885978/chopping-deadspace-out-of-uiviewanimationtransitioncurlup 0 chopping deadspace out of UIViewAnimationTransitionCurlUp? eerok512 2009-12-11T05:30:02Z 2009-12-11T05:30:02Z <p>I'd like to utilize UIViewAnimationTransitionCurlUp more often in my applications however it has a very annoying trait... namely that the first 20% to 35% of it is non-action... I know this is the case because I set an animation duration to 20 seconds to confirm my suspicions that the culprit wasn't simply setup time internal to [UIView], but rather the animation itself... and sure enough the first 6 seconds or so were consumed by the phone doing nothing at all.</p> <p>The reason this is a problem is that I would like to highlight the leet look of the page curling up by setting the duration to say 4 or 5 seconds instead of having it fly by too rapidly for decent recognition when the duration is set to 1 second... however if I use 5 seconds it has probably 1.5 to 2 seconds of deadspace where nothing happens.</p> <p>but the problem isn't merely that... suppose that the curl is triggered when the user presses a button... the fact that the curl immediately overrides any screen rendering prevents the button's coloured highlight state from displaying... the resulting 2 seconds of frozen screenstate make the user liable to press the button again thinking his first press wasn't intercepted, an action which can sometimes end up getting queued for after the curl is done, and then end up being executed on whatever action page I have underneath the curled page! which is like a user flying blind... which is a bit dysfunctional hehe</p> <p>so yeah I dunno how to solve this... I have heard it is possible to compose ones own animations by delving into the CA library, something I will certainly be doing at some point just due to a lifelong interest in rolling my own animations... but at the moment where free time is very short I'm wondering of other possible solutions... if there aren't any I will just settle for a median duration of 1.500 seconds and force myself to be happy with that :)</p> <p>it just occurred to me to look into the SDK for some sort of [UIView SetAnimationStartPoint] type function... I hope such a function exists... if not I can only rely on advice from y'all to save me :p</p> <p>any help will be appreciated!</p> http://stackoverflow.com/questions/1884705/iphone-animation-problem-simulator-vs-real-device 0 iPhone animation problem SImulator vs Real Device Lukasz 2009-12-10T23:00:38Z 2009-12-11T04:22:17Z <p>Hi! This is my first question her so please be gentle: I have followig animation code running smoothly on the simulator as well as on the real device (I am testng on iPhone 3GS 3.1.2). Animation is a simple transition between the 2 views, something like book page flipping.</p> <p>One diffrence betwen simulator an real device (The problem I cannot investigate - solve) is that on real device when animation finishes - after rotation has been done animated view blink (show for a split of second) for a moment before it goes hidden. On the simulator this 'unexpected' blink does not happen.</p> <p>Here is the animation code:</p> <pre><code>-(void)flip{ UIView *animatedView; // create an animation to hold the page turning CABasicAnimation *transformAnimation = [CABasicAnimation animationWithKeyPath:@"transform"]; transformAnimation.removedOnCompletion = NO; transformAnimation.delegate = self; transformAnimation.duration = ANIMATION_TIME; transformAnimation.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut]; // this is the basic rotation by 90 degree along the y-axis CATransform3D endTransform = CATransform3DMakeRotation(3.141f/2.0f, 0.0f, -1.0f, 0.0f); // these values control the 3D projection outlook endTransform.m34 = 0.001f; endTransform.m14 = -0.0015f; // start the animation from the current state transformAnimation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; transformAnimation.toValue = [NSValue valueWithCATransform3D:endTransform]; animatedView = screenShot; // Create an animation group to hold the rotation and possibly more complex animation in the future CAAnimationGroup *theGroup = [CAAnimationGroup animation]; // Set self as the delegate to receive notification when the animation finishes theGroup.delegate = self; theGroup.duration = ANIMATION_TIME; // CAAnimation-objects support arbitrary Key-Value pairs, we add the UIView tag // to identify the animation later when it finishes [theGroup setValue:[NSNumber numberWithInt:animatedView.tag] forKey:@"animated"]; // Here you could add other animations to the array theGroup.animations = [NSArray arrayWithObjects:transformAnimation,nil]; theGroup.removedOnCompletion = NO; // Add the animation group to the layer if (animatedView.layer.anchorPoint.x != 0.0f) { animatedView.layer.anchorPoint = CGPointMake(0.0f, 0.5f); float yy = animatedView.center.x - (animatedView.bounds.size.width / 2.0f); animatedView.center = CGPointMake(yy, animatedView.center.y); } if(![animatedView isDescendantOfView:self.view])[self.view addSubview:animatedView]; screenShot.hidden = NO; animatedView.hidden = NO; [animatedView.layer addAnimation:theGroup forKey:@"flip"]; } - (void)animationDidStop:(CAAnimation *)theAnimation finished:(BOOL)flag { screenShot.hidden = YES; } </code></pre> http://stackoverflow.com/questions/1865099/how-come-my-core-animation-transformation-always-returns-to-its-start-state 2 How come my Core Animation transformation always returns to it's start-state? ABeanSits 2009-12-08T06:53:13Z 2009-12-10T18:37:48Z <p>Hello experts! I am trying to perform some kind of animation of a layer in my iPhone application. It does not matter what I do I always get the same results: after the animation is done it jerks back into it's original position. Even though I set <code>removedOnCompletion</code> to false there is no difference.</p> <p>What am I missing here?</p> <p>Thanks in advance!</p> <p><strong>EDIT:</strong> Really need help with this one guys. I am creating animations with <code>CAKeyframeAnimation</code> and <code>CABasicAnimation</code> objects, then adding them to a <code>CAAnimationGroup</code> which I in turn att to the layer. The animation works as predicted except that it always snaps back to it's original state. This is the case even though I set <code>removedOnCompletion = NO;</code> on all animation-objects and the animation group.</p> <p>Some one please point me in the right direction! I you live in the Stockholm area I will buy you a coffe. =) New code posted below:</p> <pre><code>CABasicAnimation *leveloutLeafAnimation = [CABasicAnimation animationWithKeyPath:@"transform"]; leveloutLeafAnimation.removedOnCompletion = NO; leveloutLeafAnimation.duration = 1.0; leveloutLeafAnimation.repeatDuration = 20; CATransform3D transformLeafToRotation = CATransform3DMakeRotation(0.0, 0.0, 0.0, 1); CATransform3D transformLeafFromRotation = CATransform3DMakeRotation([self _degreesToRadians:270.0], 0.0, 0.0, 1); leveloutLeafAnimation.fromValue = [NSValue valueWithCATransform3D:transformLeafFromRotation]; leveloutLeafAnimation.toValue = [NSValue valueWithCATransform3D:transformLeafToRotation]; //Create an animation group to combine the animations. CAAnimationGroup *theAnimationGroup = [CAAnimationGroup animation]; //The animationgroup conf. theAnimationGroup.delegate = self; theAnimationGroup.duration = animationDuration; theAnimationGroup.removedOnCompletion = NO; theAnimationGroup.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionLinear]; theAnimationGroup.animations = [NSArray arrayWithObjects:leveloutLeafAnimation, leafMoveAnimation, nil]; // Add the animation group to the leaf layer. [leafViewLayer addAnimation:theAnimationGroup forKey:@"animatLeafFalling"]; </code></pre> http://stackoverflow.com/questions/1864750/forcing-consecutive-animations-with-cabasicanimation 0 Forcing Consecutive Animations with CABasicAnimation FTLPhysicsGuy 2009-12-08T05:10:56Z 2009-12-08T22:53:40Z <p>I have a notification that fires in my model when certain properties change. As a result, a selector in a particular view object catches the notifications to change the position of the view accordingly.</p> <p>The notifications causes a view on the window to move in a particular direction (always vertically or horizontally and always by a standard step size on the window). It's possible for the user-actions to cause several notifications to fire one after the other. For example, 3 notifications could be sent to move the view down three steps, then two more notifications could be sent to move the view to the right two steps.</p> <p>The problem is that as I execute the animations, they don't happen consecutively. So, in the previous example, though I want the view to move slowly down three spaces and then move over two spaces as a result of the notifications, instead it ends up moving diagonally to the new position.</p> <p>Here is the code for my two selectors (note that placePlayer sets the position of the view according to current information in the model):</p> <pre><code>- (void)moveEventHandler: (NSNotification *) notification { [self placePlayer]; CABasicAnimation* moveAnimation = [CABasicAnimation animationWithKeyPath:@"position"]; moveAnimation.duration = 3; moveAnimation.fillMode = kCAFillModeForwards; // probably not necessary moveAnimation.removedOnCompletion = NO; // probably not necessary [[self layer] addAnimation:moveAnimation forKey:@"animatePosition"]; } </code></pre> <p>Any suggestions on how to make multiple calls to this methods force animation to execute step-by-step rather than all at once? Thanks!!</p> http://stackoverflow.com/questions/1861961/pragmatic-way-of-handling-mouse-in-core-animation-layers 0 Pragmatic way of handling mouse in Core Animation layers Jack 2009-12-07T18:30:04Z 2009-12-08T13:27:45Z <p>Hello, I'm starting working with <strong>Core Animation</strong> and I started wondering how to handle various kinds of mouse events like</p> <ol> <li>mouse entered a <code>CALayer</code></li> <li>mouse exited a <code>CALayer</code></li> <li>mouse click on a <code>CALayer</code></li> </ol> <p>For now I'm concentrating just on <code>mouseDown</code> message sent to my custom view. According to the documentation I should use <code>-hitTest:(CGPoint)point</code> calling on my root layer (the one set with <code>[customView setLayer:rootLayer]</code>).</p> <p>It should return the farthest layer in the tree that is in position specified by point. So I did:</p> <pre><code>[rootLayer hitTest:[event locationInWindow]] </code></pre> <p>but it doens't work. It seems to work if I just click on <code>rootLayer</code>, otherwise it returns just <code>null</code>. Of course sublayers are added to rootLayer (infact they are drawn)</p> <p>Am I missing some kind of coordinate conversion? Apart from that, is it the way to handle mouse clicks?</p> <p>To find whenever mouse enters a CALayer do I have to keep hit testing for every movement update of the mouse?</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/330609/how-do-i-trigger-a-callback-when-a-nsanimationcontext-ends 0 How do I trigger a callback when a NSAnimationContext ends? Benedict Cohen 2008-12-01T11:57:41Z 2009-12-08T10:00:09Z <p>I have an animation which moves some views around. When this animation completes I want the window to recalculate the keyview loop. My code is simmilar to the follow mock code:</p> <pre><code>[NSAnimationContext beginGrouping]; [newView setAlpha: 0.0]; //hide newView [self addSubView:newView]; //position the views [[oldView animator] setFrame: newFrame1]; [[newView animator] setFrame: newFrame2]; [[newView animator] setAlpha: 1.0]; //fade-in newView [NSAnimationContext endGrouping]; [[self window] recalculateKeyViewLoop]; </code></pre> <p>The problem with this code is that <code>recalculateKeyViewLoop</code> is called before the views are in their new positions which means that the keyviewloop is wrong.</p> <p>How do I fix this?</p> <p>My first though is to call <code>recalculateKeyViewLoop</code> in a callback from when the animation ends but I can't figure out how to do this.</p> http://stackoverflow.com/questions/1857321/how-do-i-get-nstextfields-to-fully-animation-using-core-animation-with-a-layer-ba 0 How do I get NSTextFields to fully animation using Core Animation with a layer backs NSView Lawrence Johnston 2009-12-07T01:39:49Z 2009-12-07T04:43:06Z <p>I have a very basic app I'm using for experimenting with Core Animation.</p> <p>NSWindow -ContentView --CustomView ---NSTextField</p> <p>I set the content view to be layer backed in interface builder and create a <code>transform.rotation</code> animation.</p> <p>When I add this to the content view it rotates properly, but the <code>NSTextField</code> also remains painted at the original location (i.e. two <code>NSTextField</code>s are now visible, one at the transformed location and one at the original location).</p> <p>This also appears to be true for other UI elements set to draw their own background. e.g. if I create an <code>NSLabel</code> and set it to a specific background color and check the set draws background box then it has the same issue.</p> <p>How do I avoid this?</p> http://stackoverflow.com/questions/1854510/core-data-core-animation-calayer-together 0 Core Data + Core Animation/CALayer together?? ivanTheTerrible 2009-12-06T06:06:32Z 2009-12-06T16:42:39Z <p>I am making an Cocoa app with custom interfaces. So far I have implemented one version of the app using CALayer doing the rendering, which has been great given the hierarchical structure of CALayers, and its [hitTest:] function for handling mouse events. In this early version, the model of the app are my custom classes.</p> <p>However, as the program grows I feel the urge of using Core Data for the model, not just for the ease of binding/undo management, but also want to try out the new technology.</p> <p>My method so far:</p> <p>In Core Data: creating a <strong>Block</strong> <em>entity</em>, with <em>attributes</em> <strong>xPos, yPos, width, height</strong>...etc.</p> <p>Then, creating a <strong>BlockView : CALayer</strong> class for drawing, which uses methods such as <strong>self.position.x = [self valueForKey:@"xPos"]</strong> to fetch the values from the model. </p> <p>In this case, every <strong>BlockView</strong> object has to also keep a local copy of <strong>xPos</strong>, which is NOT good.</p> <p>Do any of you guys have better suggestions?</p> <p>Edit: This app is a information visualization tool. So the positions, dimensions of the blocks are important, and should be persisted for later analysis.</p> http://stackoverflow.com/questions/1829081/mixing-caeagllayer-with-other-calayers 0 Mixing CAEAGLLayer with other CALayers Martin Cote 2009-12-01T21:33:49Z 2009-12-04T00:06:27Z <p>I'm trying, unsuccessfully, to combine OpenGL content with other CALayers. In particular, I would like to overlay the OpenGL content above the other layers (with alpha transparency).</p> <p>I run into two problems:</p> <ol> <li>My OpenGL rendering is never displayed (even though the OpenGL functions succeeds).</li> <li>The OpenGL rendering is awfully slow (around 1 fps).</li> </ol> <p>I should note that I'm not using a CAEAGLLayer-backed view. Instead, I'm using a custom CAEAGLLayer subclass directly. This may be the problem for #1. Using a layer-backed view may work, but I'm not sure how to proceed to make it transparent.</p> <p>Regarding #2, I'm aware that the documentation says that there is a performance penalty into mixing EAGLLayers with other layers, and that settings the opaque property to NO is even more costly. But 1 fps seems unreasonably slow.</p> <p>Any suggestion and/or comments would be appreciated.</p> <p><strong>EDIT</strong></p> <p>The GL layer do work when used as a backing-layer of a view. It is not convenient though as I want to use the GL layer in a CALayer hierarchy.</p> <p><strong>SOLUTION</strong></p> <p>My mistake, using a CAEAGLLayer works just fine. Silly mistake from my part (I wasn't adding the right layer in the hierarchy).</p> http://stackoverflow.com/questions/1827234/iphone-animation-efficiency-solutions-layering-questions 1 iPhone animation efficiency solutions, layering questions Sneakyness 2009-12-01T16:19:01Z 2009-12-03T22:40:48Z <p>I'm working on writing a rather basic app. It uses minimal touch input, and mostly just plays fancy animations. There isn't much animation, but the way it's currently done seems super inefficient and uses far too much memory. </p> <p>The view is split into two parts, the bottom 1/5th is just one image that doesn't ever change. The rest of it is where the animation plays. It's currently done by loading the 32 images into an array and then playing through them (8fps). It does this a total of 4 times going through each animation. The pictures aren't huge, but they're still rather large. I was also wondering the best file format to store them as, both in terms of overall size and the overhead required. </p> <p>This is a super simple approach, and it works, but it just doesn't seem to be cutting it memwise, it uses too much. </p> <p>My suggestion was to split the animation up into some layers, because there's a few things I think could be done differently:</p> <ul> <li>Make the background one static image, so it doesn't have to be part of the animations</li> <li>Take out a few of the "doodads", such as moving graphs and a progress bar, and make those their own partially transparent layers, on top of or below the animations. This would also open up the door as far as creative freedom goes in the future for me. </li> <li>Cut out the text at the top and use the iPhone to programmatically display the text instead. Is it better to use the iPhone to draw the text or to load an image with text in it? Being primarily a Web Dev, I find it silly to load any images with text in them.</li> <li>Play what's left after these things are cut out as the animations, which would be considerably smaller. </li> </ul> <p>So overall, we're looking at 1 static background, 3-5 small animations, and one large one. Can I use layers to make these elements all separate, and rely more on the iPhone to draw the final image? That was where I thought I could have this run a little better, it seems silly to merge everything into one big picture that you flip through like a flip book, when you can instead load a few smaller elements that are used app-wide, and do things quite a bit more efficiently. </p> <p>Or, am I totally overcomplicating this and is there a better way to go about it?</p> <p>Edit: I've been browsing around and it appears that using layers would be more efficient. I also have another question, though. Is it better to have each frame of the animation as it's own file, and loaded into the array for animation, or to have one giant sprite sheet image with all the frames, and have the iPhone grab each frame from within the sprite sheet using coordinates programmatically? </p> http://stackoverflow.com/questions/1835240/caanimation-duration-not-being-applied 0 CAAnimation duration not being applied Alex Reynolds 2009-12-02T19:27:30Z 2009-12-03T12:04:51Z <p>I am applying a <code>CAAnimation</code> to move a toolbar on- and off-screen. </p> <p>When I touch the superview, that fires the following method:</p> <pre><code>- (void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { [UIView beginAnimations:kViewerToggleToolbarAnimation context:nil]; if (self.viewerToolbarView.isVisible) { self.viewerToolbarView.frame = CGRectMake(0, self.frame.size.height, self.viewerToolbarView.frame.size.width, self.viewerToolbarView.frame.size.height); self.viewerToolbarView.isVisible = NO; } else { self.viewerToolbarView.frame = CGRectMake(0, self.frame.size.height - kUIToolbarHeight, self.viewerToolbarView.frame.size.width, self.viewerToolbarView.frame.size.height); self.viewerToolbarView.isVisible = YES; } [UIView commitAnimations]; } </code></pre> <p>This in turn fires the subview's delegate method:</p> <pre><code>- (id&lt;CAAction&gt;) actionForLayer:(CALayer *)layer forKey:(NSString *)key { id&lt;CAAction&gt; animation = nil; if ([key isEqualToString:kViewerToggleToolbarAnimation]) { animation = [CABasicAnimation animation]; if (self.isVisible) ((CABasicAnimation*)animation).duration = kViewerToolbarHideAnimationDuration; else ((CABasicAnimation*)animation).duration = kViewerToolbarShowAnimationDuration; ((CABasicAnimation*)animation).timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionDefault]; } else { animation = [super actionForLayer:layer forKey:key]; } return animation; } </code></pre> <p>The constants <code>kViewerToggleToolbarAnimation</code>, <code>kViewerToolbarHideAnimationDuration</code> and <code>kViewerToolbarShowAnimationDuration</code> are defined elsewhere as:</p> <pre><code>extern NSString * const kViewerToggleToolbarAnimation; extern CGFloat const kViewerToolbarShowAnimationDuration; extern CGFloat const kViewerToolbarHideAnimationDuration; ... NSString * const kViewerToggleToolbarAnimation = @"kViewerToggleToolbarAnimation"; CGFloat const kViewerToolbarShowAnimationDuration = 2.50f; CGFloat const kViewerToolbarHideAnimationDuration = 2.75f; </code></pre> <p>The problem is that I can increase these duration values in the constants file, but the delegate method ignores those durations and applies its own noticeably short duration (0.5 sec, roughly).</p> <p>2.5 and 2.75 sec are pretty noticeably long times in which the animation would otherwise run, if it was working properly.</p> <p>What am I doing wrong about firing the animation, which causes these duration constants to be ignored? It otherwise compiles and runs fine, so it doesn't complain about not being able to find the constants.</p> http://stackoverflow.com/questions/1632364/shake-visual-effect-on-iphone-not-shaking-the-device 4 Shake visual effect on iPhone (NOT shaking the device) tewha 2009-10-27T17:22:46Z 2009-12-03T08:36:28Z <p>On login failure, I'd prefer to avoid showing an alert, it's too fleeting. Showing the alert and then showing the text somewhere on the login screen seems like duplication.</p> <p>So I'd like for it to graphically shake my login view when the user enters the wrong user ID and password like the Mac login screen does.</p> <p>Anyone know if there's a way to pull this off, or have any suggestions for another effect I could use? </p> http://stackoverflow.com/questions/1835887/simple-core-animation-view-rotation 0 Simple Core Animation View Rotation Michael Waterfall 2009-12-02T21:16:09Z 2009-12-02T21:36:54Z <p>I'm going to look into Core Animation in more detail soon but at the moment I'm just looking to rotate a view by a specified angle. I was wondering if anyone could point me to some code or provide a simple example as a quick search online hasn't pulled up any thing useful!</p> <p>Basically, I need to set an anchor point and then rotate my view by a certain angle. Then from there I may set another angle and it will animate smoothly to the new angle.</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/1829324/fading-out-a-cocoa-window 1 Fading out a Cocoa window alexy13 2009-12-01T22:15:19Z 2009-12-02T20:55:48Z <p>Hello I am wondering if there is a way to animate a window in objective-c using core-animation or quartz. I would like to fade out a window when I close it. My OSX operating system is Tiger.</p> <p><strong>Edit:</strong> Is it possible to do the same with an applescript application in Xcode by somehow calling a method from objective-c or another way?</p> http://stackoverflow.com/questions/1819311/can-you-animate-gradients-using-quartz-in-an-iphone 0 Can you animate gradients using Quartz in an iPhone? Carl Hovland 2009-11-30T11:38:23Z 2009-12-01T06:43:51Z <p>Hi,</p> <p>I am new to iPhone development and am currently toying with recreating a charting tool I developed for Silverlight.</p> <p>Currently I'm using a gradient to 'fill' a rectangle representing a bar within a chart. Is it possible to animate this gradient so it changes colour when a user touches the bar within the chart.</p> <p>I have looked through the Core Animation guides provided by Apple but cannot see a property which targets gradients. I suppose I could use a transition to fade between two rects, one of which has my starting gradient and the second with the 'touched' version but this would mean obviously drawing multiple rect objects for each bar with I assume extra performace overheads.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/873515/core-animation-code-structure-conventions 1 Core animation code structure/conventions unknown (google) 2009-05-16T23:18:10Z 2009-11-29T18:00:03Z <p>In learning Core Animation, I learned very quickly that if you don't do it right, you get really weird undefined behavior. To that end, I have a few questions that will help me conceptually understand it better.</p> <ul> <li><p>My NSView subclass declares the following in it's init. This view is a subview of normal layer backed view.</p> <pre><code>[self setLayer:[CALayer layer]]; [self setWantsLayer:NO]; </code></pre> <p>After this, when and in what situations should I refer to self as opposed to [self layer]? I have been ONLY manipulating the layer with explicit and implicit animations, staying away from [self setFrame:] etc. and using [[self layer] setPosition] etc.</p></li> <li><p>The problem with this approach is that the actual frame of the view stays in one spot throughout any and all animations applied. What if my view is supposed to recieve mouse events? For example, I have a view that uses core animation and it is dragged around by the mouse. Is there a way I can somehow keep the view frame synced with the current state of the presentation layer so I can receive proper mouse events?</p></li> <li><p>About the presentation layer, apparently it's only available when an actual animation is in progress. Is there any sort of property of the layer that can tell me where it's ACTUALLY visually at even when an animation's not in progress?</p></li> </ul> http://stackoverflow.com/questions/1812464/animating-a-falling-feather-using-core-animation-on-the-iphone 0 Animating a falling feather using Core Animation on the iPhone. ABeanSits 2009-11-28T12:52:51Z 2009-11-28T12:52:51Z <p><strong>Hello Animators!</strong></p> <p><strong>The scenario:</strong> The user has touched and moved an image to a certain position, he/she then release the object. It should now in a realistic way fall to the bottom of the screen, see <a href="http://www.youtube.com/watch?v=q%5FovFw8wArE" rel="nofollow">this video</a> for some inspiration.</p> <p>The touching and dragging parts are already implemented using:</p> <pre><code>- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event; - (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event; </code></pre> <p>I was thinking of hooking up the animation code inside:</p> <pre><code>- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event; </code></pre> <p>My object is a UIView containing an UIImage and I'm using SDK 3.1.</p> <p><strong>My ideas:</strong> </p> <ul> <li>Create a path using: <code>CGPathRef</code> and <code>CGPathAddCurveToPoint</code>. This will resemble one iteration of the falling object. See this ugly picture I have drawn for an example: <img src="http://grab.by/QC4" alt="alt text"> </li> <li>By calculating the distance form the object to the bottom I will know how may of these animated iterations I will need.</li> </ul> <p><strong>Questions:</strong> </p> <ul> <li>Is this the right way to go? With the path and looping over the animation.</li> <li>How do I add acceleration to the path it is traveling? I would like it to slow down before it switches direction and then speed up again.</li> <li>Will the other parts of the GUI be responsive to user interaction during the animation sequence?</li> </ul> <p><hr></p> <p>As you noticed I am fairly new to CoreAnimation and I draw really ugly. :) Any pointer in the right direction will be highly appreciated.</p> <p>Best regards</p> <p>ABeanSits</p> http://stackoverflow.com/questions/1708616/view-swap-using-push-animation 1 View swap using push animation PCWiz 2009-11-10T15:03:34Z 2009-11-26T18:30:55Z <p>I want to swap out one view with another by pushing the old view aside to slide in a new view (the kCATransitionPush type). To use CoreAnimation I need to work with CALayers with my views. The problem is that attaching a backing layer to my window content view through setWantsLayer distorts everything in the view.</p> <p>I'm not sure if this has something to do with the fact that I'm using a subclass of NSWindow called MAAttachedWindow (<a href="http://mattgemmell.com/source" rel="nofollow">http://mattgemmell.com/source</a>), which is a HUD style transparent popup window of sorts that attaches to another element on the screen.</p> <p>I can provide screenshots of this distortion if needed. I got the animation working through NSViewAnimation, but as many others have experienced, NSViewAnimation is terribly slow. I'd rather use CoreAnimation but this issue prevents me from using it.</p> <p>Any insight is greatly appreciated</p> http://stackoverflow.com/questions/460014/can-you-animate-a-height-change-on-a-uitableviewcell-when-selected 0 Can you animate a height change on a UITableViewCell when selected? Ted 2009-01-20T03:17:52Z 2009-11-25T23:00:02Z <p>I'm using a UITableView in my iPhone app, and I have a list of people that belong to a group. I would like it so that when the user clicks on a particular person (thus selecting the cell), the cell grows in height to display several UI controls for editing the properties of that person. </p> <p>Is this possible? </p> http://stackoverflow.com/questions/1792826/iphone-animation 0 iPhone animation Chris 2009-11-24T20:48:17Z 2009-11-25T13:48:33Z <p>I trying to do an animation on the iPhone and I hope someone can help me out here as I'm stumped.</p> <p>I am using CAKeyframeAnimation with CAPath to animate views around.</p> <p>I have these settings set:</p> <pre><code>animation.removedOnCompletion = YES; animation.fillMode = kCAFillModeRemoved; </code></pre> <p>So that the animation is removed from the layer when the animation finishes I want the view to respond to touches. As I have found that if I set:</p> <pre><code>animation.removedOnCompletion = NO; animation.fillMode = kCAFillModeForwards; </code></pre> <p>then the view no longer responds to touches after the animation.</p> <p>This has also had the negative side effect of having to manually position the view to its finished location when the animation finishes.</p> <p>The theory of what I'm doing works but in practice there is a jump of the view back to its original position before I can manually set its position in the animationDidStop method.</p> <p>So is it possible to have the final position of animation stay and the view respond to touches?</p> http://stackoverflow.com/questions/879064/how-to-capture-current-view-screenshot-and-reuse-in-code-iphone-sdk 3 How to capture current view screenshot and reuse in code? (iPhone SDK) Carson C. 2009-05-18T18:15:22Z 2009-11-22T09:42:12Z <p>I am attemting to transition from one UIView to another, when the user rotates the device. This, in of itself, is not difficult. However, since I am displaying completely different content after the rotation, the default animation provided by UIKit (rotating the currently displayed view) is inappropriate conceptually.</p> <p>Simply disabling the animation and swapping the views suddenly is tolerable, but is far below the polish I'm building into the rest of the app. What I would prefer to do is this:</p> <p>When shouldAutorotateToInterfaceOrientation: is called, I would like to grab an opaque view snapshot, a screenshot if you will, of the user view before rotation. Then after the rotation is completed and the system has applied the view transforms etc, I can show the snapshot view I saved and animate a transition of my choice to my new view. After it is completed, I can release my snapshot and move on.</p> <p>Is there a way to do this that is not expensive?</p> <p>The only other option I can think of is to return NO on all orientations other than my default one, and then react by applying my own animations and transforms. I'd prefer to use the system to do this however, as I feel it is likely doing it myself could cause "undefined" keyboard behavior in the manually rotated view, etc.</p> <p>Thoughts?</p> http://stackoverflow.com/questions/1777125/objects-do-not-retain-the-frame-that-i-give-then-when-using-cgaffinetransforms-wi 0 Objects do not retain the frame that I give then when using CGAffineTransforms with Core Animation unknown (google) 2009-11-21T23:22:30Z 2009-11-22T05:27:28Z <p>Hi, I'm making a game where when a card is touched, it grows so that it is focused, and when you 'let go', it goes back to its original size and place. This seems pretty standard, however, when I add cards and move the hand around to accommodate different numbers of cards, touching the card makes it go to its original place, and not to the new place. </p> <p>This has been stumping me for a while now Any hints would be much appreciated. </p> <p>Thanks ! </p> http://stackoverflow.com/questions/1767401/animating-a-shape-with-coreanimation 0 Animating a shape with CoreAnimation nutsmuggler 2009-11-19T23:42:13Z 2009-11-21T23:30:52Z <p>Hello folks, I approaching core animation and drawing empirically. I am trying to animate a simple shape; the shape in question is formed by 3 lines plus a bezier curve. A red line is also drawn, to show the curve control points.</p> <p><img src="http://img.skitch.com/20091119-1ufar435jdq7nwh8pid5cb6kmm.jpg" alt="alt text"></p> <p>My main controller simply adds this subview and calls the <code>adjustWave</code> method whenever <code>touchesEnd</code>. Here is the code for my shape drawing class. As you see the class has one property, cp1x (the x of the bezier control point 1). This is the value I would like to animate. Mind, this is a dumb attempt ...</p> <pre><code>- (void)drawRect:(CGRect)rect { float cp1y = 230.0f; float cp2x = 100.0f; float cp2y = 120.0f; CGContextRef ctx = UIGraphicsGetCurrentContext(); CGContextClearRect(ctx, rect); CGMutablePathRef path = CGPathCreateMutable(); CGPathMoveToPoint(path, NULL, 10.0f, 200.0f); CGPathAddCurveToPoint (path, NULL, cp1x, cp1y, cp2x, cp2y, 300.0f, 200.0f); CGPathAddLineToPoint(path, NULL, 300.0f, 300.0f); CGPathAddLineToPoint(path, NULL, 10.0f, 300.0f); CGPathCloseSubpath(path); CGContextSetFillColorWithColor(ctx, [UIColor blueColor].CGColor); CGContextAddPath(ctx, path); CGContextFillPath(ctx); // Drawing a line from control points 1 and 2 CGContextBeginPath(ctx); CGContextSetRGBStrokeColor(ctx,1,0,0,1); CGMutablePathRef cp1 = CGPathCreateMutable(); CGPathMoveToPoint(cp1, NULL, cp1x, cp1y); CGPathAddLineToPoint(cp1, NULL, cp2x, cp2y); CGPathCloseSubpath(cp1); CGContextAddPath(ctx, cp1); CGContextStrokePath(ctx); } - (void)adjustWave { [UIView beginAnimations:@"movement" context:nil]; [UIView setAnimationDelegate:self]; [UIView setAnimationWillStartSelector:@selector(didStart:context:)]; [UIView setAnimationDidStopSelector:@selector(didStop:finished:context:)]; [UIView setAnimationCurve:UIViewAnimationCurveEaseIn]; [UIView setAnimationDuration:3.0f]; [UIView setAnimationRepeatCount:3]; [UIView setAnimationRepeatAutoreverses:YES]; cp1x = cp1x + 20.0f; [UIView commitAnimations]; } </code></pre> <p>The shape doesn't change. If, conversely, I take out the CA code and add a simple `[self setNeedsDisplay] in the last method the shape changes, but obviously without CA. Can you help sme? I am sure I am making a very basic mistake here… Thanks in advance, Davide</p> http://stackoverflow.com/questions/1755492/how-to-implement-an-iphone-view-transition-animation-with-both-flipping-and-scali 0 how to implement an iPhone view transition animation with both flipping and scaling? ross chen 2009-11-18T11:51:42Z 2009-11-21T23:29:18Z <p>how can I implement the animation we see in the iPhone Music app's coverflow screen? when you click on a small view, it flips and scales up to another view? how can I do this? I can use core animation to flip and scale a view, but how can I do the transition to another view? thanks</p> http://stackoverflow.com/questions/1159198/whats-the-difference-between-caanimation-cabasicanimation-cakeyframeanimation 0 What's the difference between CAAnimation, CABasicAnimation, CAKeyFrameAnimation and the standard [UIView beginAnimations] Core Animation stuff? Thanks 2009-07-21T13:32:35Z 2009-11-21T18:00:03Z <p>Are all these things basically the same? I did the exact same thing now with CAAnimation rather than using an simple UIView animation block. What are the big differences?</p> http://stackoverflow.com/questions/1774127/weird-scaling-effect-going-on-when-rotating-a-uiview-with-core-animation 0 Weird scaling-effect going on when rotating a UIView with Core Animation Thanks 2009-11-21T00:57:38Z 2009-11-21T00:57:38Z <p>I'm rotating it like this:</p> <pre><code>[rotationView.layer setValue:value forKeyPath:@"transform.rotation.z"]; </code></pre> <p>wrapped in a UIView animation block with beginAnimations... and commitAnimations.... Basic stuff. </p> <p>That view contains a stack of three other views which are rotated also. It's a clock, basically.</p> <p>What happens: When the superview of all these rotates with core animation, the inner views start to scale like a pulse. as rotation starts they get smaller (looks like they zoom out), and then when rotation ends they get bigger again (like zoomed in). that effect can make you feel drunk. well, not what I want.</p> <p>What can cause this?</p>