UICoreTextView多格式文本渲染
UICoreTextView 是一個(gè)易用的 UIView ,可通過 CoreText 進(jìn)行多格式文本的渲染。
示例代碼:
@interface BlueCircle : NSObject<HTMLRenderer>
@end
@implementation BlueCircle
-(CGSize)size
{
return CGSizeMake(50, 50);
}
-(void)renderInContext:(CGContextRef)context rect:(CGRect)rect
{
CGContextSetFillColorWithColor(context, [UIColor blueColor].CGColor);
CGContextFillEllipseInRect(context, rect);
}
@end
評(píng)論
圖片
表情
