от CALayer? Написал такую простенькую телегу, но не покидает чувство, что делаю что-то не так.
@implementation CustomLayer
+(instancetype)layer
{
return [[CustomLayer alloc] initWithLayer:[super layer]];
}
-(instancetype)initWithLayer:(id)layer
{
if(self = [super initWithLayer:layer])
{
NSLog(@"Init of custom layer");
}
return self;
}
@end
Но почему initWithLayer? Надо init переписать
Попробуй переопределить методы как в разделе этой статьи : https://blog.pixelingene.com/2012/02/animating-pie-slices-using-a-custom-calayer/#B1
Обсуждают сегодня