码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
iOS开发经验总结(上)
在iOS开发中经常需要使用的或不常用的知识点的总结,几年的收藏和积累(踩过的坑)。 一、 iPhone Size 二、 给navigation Bar 设置 title 颜色 UIColor *whiteColor = [UIColor whiteColor]; NSDictionary *dic ...
分类:移动开发   时间:2016-05-10 18:09:16    阅读次数:189
UIColor 分类 16进制转 RGB
.h #import <UIKit/UIKit.h> @interface UIColor (WJ) + (UIColor *)colorWithWJString:(NSString *)color; //从十六进制字符串获取颜色, //color:支持@“#123456”、 @“0X123456” ...
分类:其他好文   时间:2016-05-09 00:05:14    阅读次数:158
iOS学习UI之UITextfield
UITextField->UIControl->UIView 常用属性 1.图片对象转化为颜色对象 textField.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@”DOVE 1”]]; 2.borderStyle 边框样式 textField.borderStyle = UITextBor...
分类:移动开发   时间:2016-05-07 08:15:18    阅读次数:193
UIView
UIView *v1=[[UIView alloc] initWithFrame:CGRectMake(10, 100, 200, 100)]; v1.backgroundColor=[UIColor redColor]; [self.view addSubview:v1]; UIView *v2= ...
分类:其他好文   时间:2016-05-05 22:00:43    阅读次数:121
SDAutoLayerOut
UIView *vi = [UIView new]; vi.backgroundColor = [UIColor redColor]; [self.view addSubview:vi]; vi.sd_layout .leftSpaceToView(self.view,20) .rightSpace ...
分类:其他好文   时间:2016-05-03 16:10:10    阅读次数:209
.NSKernAttribute
1.NSKernAttributeName: @10 调整字句 kerning 字句调整 2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体 3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色 4.NSParagraphStyleAtt...
分类:其他好文   时间:2016-04-29 15:38:32    阅读次数:116
IOS中十六进制的颜色转换为UIColor
IOS中十六进制的颜色转换为UIColor ...
分类:移动开发   时间:2016-04-26 14:04:30    阅读次数:217
UIColor 使用起来的坑
我们一般会用 UIColor 的RGB来生成颜色: 以下几种方式都是可以的: _pushBtn.backgroundColor = [UIColor colorWithRed:220/255.f green:220/255.f blue:220/255.f alpha:1.0]; _pushBtn. ...
分类:其他好文   时间:2016-04-25 19:34:49    阅读次数:201
UITextView的使用详解
//初始化并定义大小 UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(20, 10, 280, 30)]; textview.backgroundColor=[UIColor whiteColor]; //背景色 ...
分类:其他好文   时间:2016-04-25 13:21:55    阅读次数:137
将view指定的角设置为圆角
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 80, 80)]; view.backgroundColor = [UIColor redColor]; [self.view addSubview:view]; UIBezi ...
分类:其他好文   时间:2016-04-20 19:57:47    阅读次数:133
848条   上一页 1 ... 22 23 24 25 26 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!