Tengo una subclase UIView personalizada. En IB, he especificado un UIView de "marcador de posición" y configuré la clase a mi nombre de clase. Mi anulación del método drawRect está funcionando, y el fondo se está coloreando correctamente, pero el initWithFrame no se está disparando. ¿Por qué?UIView Subclase initWithFrame no se llama?
- (id)initWithFrame:(CGRect)frame {
NSLog(@"initWithFrame");
if ((self = [super initWithFrame:frame])) {
noteTextFont = [[UIFont boldSystemFontOfSize:12] retain];
}
return self;
}
- (void)drawRect:(CGRect)rect {
[super drawRect:rect];
CGContextRef context = UIGraphicsGetCurrentContext();
UIColor *backgroundColor = [UIColor blackColor];
[backgroundColor set];
CGContextFillRect(context, rect);
UIColor *labelColor = [UIColor lightGrayColor];
[labelColor set];
[notificationLabel drawInRect:CGRectMake(44, 18, rect.size.width-20, rect.size.height) withFont:noteTextFont lineBreakMode:UILineBreakModeTailTruncation];
[self setNeedsLayout];
}
¿Puedes mostrar el código donde creas la vista personalizada? ¿Está llamando a: \t UIView * fred = [[UIView alloc] initWithFrame: myFrame]; – joelm