Re: UIView animation docs question

2009-11-04 Thread Fritz Anderson
On 3 Nov 2009, at 4:23 PM, lorenzo7...@gmail.com wrote: [UIView setAnimationDidStopSelector:@selector (animationDidStop:finshed:context:)]; -(void)animationDidStop:(NSString *)animationID finished:(NSNumber *) finished context:(void *)context{...} May I point out the spelling of the

Re: UIView animation docs question

2009-11-04 Thread Matt Neuburg
On Wed, 4 Nov 2009 09:17:30 -0600, Fritz Anderson fri...@manoverboard.org said: On 3 Nov 2009, at 4:23 PM, lorenzo7...@gmail.com wrote: [UIView setAnimationDidStopSelector:@selector (animationDidStop:finshed:context:)]; -(void)animationDidStop:(NSString *)animationID finished:(NSNumber *)

Re: UIView animation docs question

2009-11-03 Thread Klaus Backert
On 3 Nov 2009, at 23:23, lorenzo7...@gmail.com wrote: Here's the code: [UIView beginAnimations:@display context:NULL]; [UIView setAnimationDuration:0.30]; [UIView setAnimationDelegate:self]; [UIView setAnimationDidStopSelector :@selector(animationDidStop:finshed:context:)]; Really

Re: Re: UIView animation docs question

2009-11-03 Thread lorenzo7620
On Nov 3, 2009 5:08pm, Klaus Backert klaus.back...@t-online.de wrote: On 3 Nov 2009, at 23:23, lorenzo7...@gmail.com wrote: Here's the code: [UIView beginAnimations:@display context:NULL]; [UIView setAnimationDuration:0.30]; [UIView setAnimationDelegate:self]; [UIView

Re: Re: UIView animation docs question

2009-11-03 Thread lorenzo7620
On Nov 3, 2009 3:44pm, Fritz Anderson fri...@manoverboard.org wrote: On 3 Nov 2009, at 3:29 PM, lorenzo7...@gmail.com wrote: The documentation for setAnimationDidStopSelector in the XCode 3.2.1: says this: ...The message sent to the animation delegate after animations end. The

Re: UIView animation docs question

2009-11-03 Thread Fritz Anderson
On 3 Nov 2009, at 3:29 PM, lorenzo7...@gmail.com wrote: The documentation for setAnimationDidStopSelector in the XCode 3.2.1: says this: ...The message sent to the animation delegate after animations end. The default value is NULL. The selector should be of the form: -