Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Cheeseman
I wrote an application a couple of years ago that still runs perfectly on Mac OS X 10.7, 10.8 and 10.9. I built it with Xcode 3.x on 10.7. It uses core animation and layer hosting views. Now I have to update it for unrelated reasons. But when I build the same code with Xcode 5.1 on OS X 10.9,

Re: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Kevin Meaney
I think this problem might go beyond Core Animation, unless NSAnimation is using CoreAnimation under the hood. Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2. But built apps that apple provides with the sample code still work on

Re: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Cheeseman
On Mar 31, 2014, at 11:17 AM, Kevin Meaney k...@yvs.eu.com wrote: Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2. But built apps that apple provides with the sample code still work on 10.9.2. When built using Xcode 5.1 these

RE: Core animation layers work on 10.7 but not 10.8 or 10.9

2014-03-31 Thread Bill Monk
Apple's sample code Image Transition and Cocoa Slides both crash when built using Xcode 5.1 and run on 10.9.2 When built with 10.9 SDK, views using CIFilters need their layerUsesCoreImageFilters set to YES. Yeah, it bit me too...it's in the 10.9 release notes somewhere. But built apps