I have two CALayers each showing an image. The first (left) layer in the view hierarchy is on top of the second one. The problem is that after I apply a rotation around the y-axis, the right layer is
I am creating a vector based drawing app, and being truly vector based I need to have a \"limitless\" canvas. So I have created the following structure:
I\'m trying to simulate the look of CDs in a shelf. Each CD should be visible from an angle very much like books when you look at a book shelf. I use core animation transformations. The problem is tha
Here\'s my animation code: CGFloat zDistance = 850; CGFloat scaleFactor = BACK_COVER_WIDTH / self.transformLayer.bounds.size.width;
I have created Layer for each of my background images in the following order: -(void)SetView { /* Getting the plist path to load */
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time,or an extraordinarily narrow situation that is not generally applic
Is there any way to have the sublayers of a CATransformLayer automatically scale to fill the bounds of the CATransformLayer when animating? I\'ve already tried setting the autoresizingMask property an
The way to load image to the layer is simply this: CALayer *layer = [[CALayer alloc]init]; layer.conten开发者_如何学运维ts = (id) [UIImage imageNamed:@\"image.png\"].CGImage;
I\'m adding several CALayers as sublayers of the layer of a UIView.The contents of each layer is a different image downloaded from a server.Each layer is animated from offscreen to a randomly generate
I have a series of layers that are randomly placed on the screen.As each layer is added, it is positioned on top of all of the others.