0

is a "perspective transform" available in Cocoa (iOS, OS X) like that I see in Silverlight,JavaFX and so on? Other related thread was not enough clarifying to me so I created this one. like this: http://i.msdn.microsoft.com/dynimg/IC270164.png

P5music
  • 281
  • 3
  • 12
  • possible duplicate of [UIView perspective transform](http://stackoverflow.com/questions/347721/uiview-perspective-transform) – Brad Larson Jul 29 '11 at 14:27

1 Answers1

1

You can’t set a perspective transform on a drawing context, but you can use a perspective transform to transform a Core Animation layer or layer-backed view. This is how Cover Flow is implemented, producing views similar to your example.

See Animation Overview for a starting point.

Jens Ayton
  • 14,532
  • 3
  • 33
  • 47