KSDebugLayer 1.0.0

KSDebugLayer 1.0.0

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.

Example iOS Usage

In your UIView subclass while debugging:

+ (Class)layerClass
{
    return [KSDebugLayer class];
}

Example OS X Usage

On the desired NSView while debugging:

view.layer = [KSDebugLayer layer];
[view updateLayer];

Resources