Re: Core Animation: How to swicth off all implicit animations?

2008-11-23 Thread Wolf Hauser
Thank you both for your great support. Obviously, "not presently supported" does not mean it raises an exception when you try to do it anyway (otherwise I would have noticed) -- it probably just means that you are likely to run into quirks, which is exactly what happened to me. But now I ha

Re: Core Animation: How to swicth off all implicit animations?

2008-11-22 Thread Wolf Hauser
Hi Matt, thank you for your help. [CATransaction begin]; [CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions]; // Your code here [CATransaction commit]; I had tried to use this, however I was not sure where to put it. My problem is with the "Your c

Core Animation: How to swicth off all implicit animations?

2008-11-22 Thread Wolf Hauser
Hello, Background: the application I am trying to build consists mainly of a WebView. And I need to perform some custom drawing in front of that WebView. First, I simply placed (in IB) a custom view in front of the WebView. Unfortunately, my drawing always took place behind the WebView. A