I have anViewA and anViewB. They're plain UIView objects with a lot of subviews. I need just the bitmap representation or lets say the "image" of anViewA copied over to anViewB, so that anViewB looks like anViewA (without having subviews like anViewA).
First I tried to use the -copy message, but unfortunately UIView doesn't conform to NSCopying protocol.
Is there another trick to make a "visual copy" of a view?