Me preguntaba cómo puedo crear trazo de texto para UILabel? hay alguna manera posible? uilabel con contorno o trazo
gracias,
#import <Foundation/Foundation.h>
@interface CustomLabel : UILabel {
}
@end
#import "CustomLabel.h"
@implementation CustomLabel
- (void)drawTextInRect:(CGRect)rect {
CGSize shadowOffset = self.shadowOffset;
UIColor *textColor = self.textColor;
CGContextRef c = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(c, 22);
CGContextSetTextDrawingMode(c, kCGTextStroke);
self.textColor = [UIColor whiteColor];
[super drawTextInRect:rect];
CGContextSetTextDrawingMode(c, kCGTextFill);
self.textColor = textColor;
self.shadowOffset = CGSizeMake(0, 0);
[super drawTextInRect:rect];
self.shadowOffset = shadowOffset;
//works fine with no warning
}
ahora la pregunta es ¿cómo puedo usar esta subclase con una etiqueta IBOutlet en diferentes viewcontrollers. ¿es correcto:
label = [[CustomLabel alloc] initWithFrame:CGRectMake(0, 0, 190, 190)];
¿Por qué no intenta crear 'label' en Interface Builder y hacer las conexiones para que su aplicación haga la menor cantidad de trabajo? – Lynn
Gracias :) Estaba confundido: D ahora funciona muy bien – Momi
¡Gracias! ¡Gran idea! Todavía tiene que ser parametrizado, como el ancho de línea, el color, etc. – Bogdan