Fun shadow effects using custom CALayer shadowPaths

来源:互联网 发布:淘宝首页图片不显示 编辑:程序博客网 时间:2024/05/20 23:58

I recently had to improve the performance of a few views that utilized CALayer-based shadows on rounded-rect UIView objects. On this particular iPad application, when the device was rotated, the views rotated quite a lot slower than we would have hoped. It wasn’t a show-stopper, but the jerky rotation animation made it look cheap and unpolished. The easiest way to have our cake, and eat it too, was to set a custom CGPath to the layer’s shadowPath property. This told UIKit to set the inside of the path to opaque, reducing the amount of work the rendering engine needed to perform.

The resulting image, as you can see above, has a shadow as you’d expect. But since we’ve declared the shape the path will have, the iPad can drastically improve its rendering performance.

Through that process however, I decided to see what sort of effects I could pull off by passing in a path otherthan the default rectangular bounds of the layer. Since you can create any sort of path you want, I considered the different effects I could get away with by making non-rectangular paths and using them as shadows.

Trapezoidal CGPath

Trapezoidal shadow providing the illusion of depth

By carefully drawing a trapezoidal shape below and slightly beneath the view, you can give the illusion of depth.

Elliptical CGPath

Elliptical shadows create the illusion of a top-down light source

Just like the trapezoid, there are other effects you can achieve by playing with simple shapes for the use of creating shadows.

Paper-curl effect

Paper curl example using a curved path

By using a control point on a bezier curve, you can make the bottom side of the shadow curve inward, making it appear like the view is printed on paper that has been curled inward.

More possibilities than can be covered

There are plenty of other possibilities, more than can be covered here. Creating CGPathRef objects, either using UIBezierCurve or by using Quartz2D drawing methods, can easily step through composing shadows. Use a CGAffineTransform object to manipulate your path to stretch, scale, or rotate it as needed. Once you realize what your possibilities are, you can add an extra degree of polish to your application with very little effort.

If you want to play with the source use to create these examples, make sure you download the Xcode project ShadowTest.

Please post comments of any fun variations you manage to come up with!

Note: Special thanks go out to my beautiful wife Deanna for the picture of her Blood Elf Mage cosplay outfitshe put together for Halloween.

From: http://nachbaur.com/blog/fun-shadow-effects-using-custom-calayer-shadowpaths


原创粉丝点击