Re: Animating a non-standard layer property

2010-09-22 Thread Matt Neuburg
On Tue, 21 Sep 2010 23:52:21 -0400, Scott Anguish sc...@cocoadoc.com said: can you please file a bug on this? custom animations are missing at the moment (sadly) but adding that and the @dynamic would be a very useful bug. But, not to beat a dead horse or anything, the Core Animation-related

Re: Animating a non-standard layer property

2010-09-21 Thread Scott Anguish
can you please file a bug on this? custom animations are missing at the moment (sadly) but adding that and the @dynamic would be a very useful bug. On Sep 20, 2010, at 7:24 PM, Kenneth Baxter wrote: Brilliant! Works now, thanks David. Is there somewhere I can find out more about this? It

Animating a non-standard layer property

2010-09-20 Thread Kenneth Baxter
Hi, I have a layer where I want to animate a point, testPoint. For the moment, I want to animate the y value of the point. I have testPoint as a property of the layer. I want to get it to redisplay (and preferably also call the setTestPoint) on every frame of the animation, so I implement: +

Re: Animating a non-standard layer property

2010-09-20 Thread David Duncan
On Sep 20, 2010, at 3:42 PM, Kenneth Baxter wrote: To see the changes as they are made, in addition to the normal synthesize of the testPoint, I have implemented the setter as follows: There's your problem. Your not supposed to @synthesize these properties. Unless you let Core Animation

Re: Animating a non-standard layer property

2010-09-20 Thread Kenneth Baxter
Brilliant! Works now, thanks David.  Is there somewhere I can find out more about this? It is not mentioned in the Core Animation Programming Guide (2010-08-12), and I have got two e-books on core animation, and it is not mentioned in either of them. Thanks Ken On 21 Sep, 2010,at 09:07 AM,

Re: Animating a non-standard layer property

2010-09-20 Thread David Duncan
I believe this is talked about in one of the WWDC2010 Core Animation in Practice sessions. Lots of good information in both, so I highly recommend watching. On Sep 20, 2010, at 4:24 PM, Kenneth Baxter wrote: Brilliant! Works now, thanks David. Is there somewhere I can find out more about