Tudo que eu quero é uma borda preta de um pixel ao redor do meu texto UILabel branco.
Cheguei ao ponto de criar uma subclasse de UILabel com o código abaixo, que remontei desajeitadamente a partir de alguns exemplos online tangencialmente relacionados. E funciona, mas é muito, muito lento (exceto no simulador) e também não consegui centralizar o texto verticalmente (por isso codifiquei o valor y na última linha temporariamente). Ahhhh!
void ShowStringCentered(CGContextRef gc, float x, float y, const char *str) {
CGContextSetTextDrawingMode(gc, kCGTextInvisible);
CGContextShowTextAtPoint(gc, 0, 0, str, strlen(str));
CGPoint pt = CGContextGetTextPosition(gc);
CGContextSetTextDrawingMode(gc, kCGTextFillStroke);
CGContextShowTextAtPoint(gc, x - pt.x / 2, y, str, strlen(str));
}
- (void)drawRect:(CGRect)rect{
CGContextRef theContext = UIGraphicsGetCurrentContext();
CGRect viewBounds = self.bounds;
CGContextTranslateCTM(theContext, 0, viewBounds.size.height);
CGContextScaleCTM(theContext, 1, -1);
CGContextSelectFont (theContext, "Helvetica", viewBounds.size.height, kCGEncodingMacRoman);
CGContextSetRGBFillColor (theContext, 1, 1, 1, 1);
CGContextSetRGBStrokeColor (theContext, 0, 0, 0, 1);
CGContextSetLineWidth(theContext, 1.0);
ShowStringCentered(theContext, rect.size.width / 2.0, 12, [[self text] cStringUsingEncoding:NSASCIIStringEncoding]);
}
Tenho apenas a sensação incômoda de estar negligenciando uma maneira mais simples de fazer isso. Talvez substituindo "drawTextInRect", mas não consigo fazer drawTextInRect se curvar à minha vontade, apesar de olhá-lo atentamente e franzir a testa com muita força.