문제

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?

도움이 되었습니까?

해결책

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

Hope this helps.

Cheers!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top