I'd like to have an NSView with subviews (images, text, etc.) and then apply a 3d transform to it using myView.layer.transform = myTransform.

After reading the docs I am confused as to whether this is allowed. If it's a layer-backed view, then I am not supposed to be interacting with the layer directly, so setting the transform seems wrong.

If it's a layer-hosting view, then I'm not supposed to have subviews.

If I want to set layer.transform, does that mean I have to set up all my drawing through CALayer, and stop using subviews?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

I just set up a CALayer animation on an NSView that has nested subviews, NSScrollViews, and it works OK. I think the restriction is on overlapping, superimposed views. (The problem with the latter is that there is no specified drawing order; it's unpredictable which view will be displayed on top.)

But if you want to apply the transform to the subviews as well, you would have to set up layers for them separately. Or, yes, you could dump the subviews and put everything on the CALayers of a single view. You can control their size and placement using the bounds and position properties. (Note position is from center, not lower left, unless you change the anchor point.)

If you're doing layer-hosting, do not apply your transform to the root layer (view.layer). Instead, make a new CALayer, add contents to it, add the transform to it, and apply it as a sublayer to the root layer. Avoid working with the root layer directly.

Quick sample of layer-hosting setup:

// Set up the root layer.
[[self.aViewController view] setLayer:[CALayer layer]];
[[self.aViewController view] setWantsLayer:YES];
// Set up a sublayer.
CALayer *sublayer = [CALayer layer];
[self.aViewController.view.layer addSublayer:sublayer];
// Repeat if you need additional sublayers. There's a name property if you need to distinguish between them.
link|improve this answer
+1: Good answer. Making sibling views overlap is documented as having unreliable behavior. – Jacques Cousteau May 14 '11 at 2:42
Thanks for the response. I had tried this but was seeing bizarre flickering and thought it might be because subviews aren't allowed. Turns out that changing the transform property automatically adds an animation which was causing the flickering. Also, I do have siblings overlapping but the transform separates them out and it is working fine. – initlaunch May 14 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.