CocoaPods trunk is moving to be read-only. Read more on the blog, there are 13 months to go.
| TestsTested | ✗ |
| LangLanguage | Obj-CObjective C |
| License | MIT |
| ReleasedLast Release | Jan 2015 |
Maintained by Keith Smiley.
A CALayer subclass to visualize the anchorPoint and bounds of
the layer. Specifically useful for handling off-center animations.
In your UIView subclass while debugging:
+ (Class)layerClass
{
return [KSDebugLayer class];
}On the desired NSView while debugging:
view.layer = [KSDebugLayer layer];
[view updateLayer];