Pregunta

How to style the text of a UITableViewCell using Three20 TTStyledTextLabel ? I tried :

TTStyledTextLabel* label = [[[TTStyledTextLabel alloc] initWithFrame:CGRectMake(0, 0, 300, 60)] autorelease];

NSInteger i = ...;
NSString *s =  [NSString stringWithFormat:@"%@ <font color='red'>(%d)</font>", [dic objectForKey:@"name"], i];

label.text = [TTStyledText textFromXHTML:s lineBreaks:NO URLs:NO];

[cell.textLabel addSubview:label];

but the cell just keeps blank. Any idea?

¿Fue útil?

Solución

You need to specify a frame for that label. Otherwise it's CGRectZero.

Hope this helps.

Cheers!

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top