码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
UIColor深入研究(CGColor,CIColor)
由于跟人比较喜欢研究关于图层与动画方面的技术,正打算看看别人写的好东西,就遇到了好几个问题,第一:UIClor类方法的使用就是关于UIColor的使用,记得之前开发中我们使用的都是UIColor后面直接食用类方法获取颜色活着使用+ (UIColor *)colorWithRed:(CGFloat)r...
分类:其他好文   时间:2015-11-09 17:01:08    阅读次数:509
按钮添加边框和边框色
//按钮边框宽度 [_numberButton.layer setBorderColor:[UIColor colorWithRed:28/255.0 green:162/255.0 blue:66/255.0 alpha:1].CGColor]; [_numberButton.layer se.....
分类:其他好文   时间:2015-11-08 17:50:30    阅读次数:139
画虚线
1 + (void)drawDashLine:(UIView *)lineView lineLength:(int)lineLength lineSpacing:(int)lineSpacing lineColor:(UIColor *)lineColor 2 { 3 CAShapeLay...
分类:其他好文   时间:2015-11-04 00:20:25    阅读次数:154
KVO监听者
监听者模式方便的监听所需要的值得变化@implementation ViewController- (IBAction)Buton:(id)sender { self.view.backgroundColor=[UIColor redColor]; }- (void)viewDidLoad { .....
分类:其他好文   时间:2015-11-03 21:17:16    阅读次数:231
十六进制颜色转换为iOS可以用的UIColor
//// UIColor+Transformation.h// ContactApp//// Created by 袁冬冬 on 15/9/11.// Copyright (c) 2015年 蓝鸥科技. All rights reserved.//#import @interface UIColor...
分类:移动开发   时间:2015-10-29 21:24:50    阅读次数:195
iOS开发-取消UISearchBar背景色
searchBar.backgroundImage = [self imageWithColor:[UIColor clearColor] size:searchBar.bounds.size];//取消searchbar背景色- (UIImage *)imageWithColor:(UIColor...
分类:移动开发   时间:2015-10-28 17:14:12    阅读次数:170
计算文本长度-boundingRectWithSize
- (void)viewDidLoad { [super viewDidLoad]; //新建lable控件 UILabel *lable=[[UILabel alloc]init]; lable.backgroundColor=[UIColor orangeColor]; //设置...
分类:其他好文   时间:2015-10-26 00:14:02    阅读次数:165
UILabel边框效果
_match.textColor = [UIColor redColor]; _match.layer.borderColor = [[UIColor redColor] CGColor]; _match.layer.borderWidth = 1.0; _match.lay...
分类:其他好文   时间:2015-10-25 22:18:37    阅读次数:171
OC画图
1.获取当前的画板CGContextRef context = UIGraphicsGetCurrentContext();2.设置画笔的颜色CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);CGContext...
分类:其他好文   时间:2015-10-23 18:33:40    阅读次数:195
[转]UIColor,CGColor,CIColor三者的区别和联系
http://www.cnblogs.com/smileEvday/archive/2012/06/05/UIColor_CIColor_CGColor.html 最近看了看CoreGraphics的东西,看到关于CGColor的东西,于是就想着顺便看看UIColor,CIColor,弄清楚它们之....
分类:其他好文   时间:2015-10-22 14:13:10    阅读次数:168
848条   上一页 1 ... 35 36 37 38 39 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!