画阴影:CGContextRef context = UIGraphicsGetCurrentContext();CGContextSetFillColorWithColor(context, [UIColor grayColor].CGColor);CGContextFillRect(contex...
分类:
移动开发 时间:
2015-12-23 19:38:53
阅读次数:
211
在CoreText里进行全文搜索,搜索的结果需要高亮显示,但是CoreText对NSMutableAttributedString中的NSBackgroundColorAttributeName属性不支持。文字无法高亮显示,想要实现需要自己绘画,怎么绘画?查看详情......
分类:
移动开发 时间:
2015-01-06 15:40:39
阅读次数:
189
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(ctx, .3, .3, .3, .1);
CGContextFillRect(ctx, self.boun...
分类:
其他好文 时间:
2014-04-29 13:33:22
阅读次数:
284