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.