UICoreTextView
- 授权协议: zlib
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/giladno/UICoreTextView
- 软件文档: https://github.com/giladno/UICoreTextView
软件介绍
UICoreTextView 是一个易用的 UIView ,可通过 CoreText 进行多格式文本的渲染。
示例代码:
@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
Machine Learning
Kevin Murphy / The MIT Press / 2012-9-18 / USD 90.00
Today's Web-enabled deluge of electronic data calls for automated methods of data analysis. Machine learning provides these, developing methods that can automatically detect patterns in data and then ......一起来看看 《Machine Learning》 这本书的介绍吧!
