在iOS开发中经常需要使用的或不常用的知识点的总结,几年的收藏和积累(踩过的坑)。 一、 iPhone Size 二、 给navigation Bar 设置 title 颜色 UIColor *whiteColor = [UIColor whiteColor]; NSDictionary *dic ...
分类:
移动开发 时间:
2016-05-10 18:09:16
阅读次数:
189
.h #import <UIKit/UIKit.h> @interface UIColor (WJ) + (UIColor *)colorWithWJString:(NSString *)color; //从十六进制字符串获取颜色, //color:支持@“#123456”、 @“0X123456” ...
分类:
其他好文 时间:
2016-05-09 00:05:14
阅读次数:
158
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 *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
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
1.NSKernAttributeName: @10 调整字句 kerning 字句调整
2.NSFontAttributeName : [UIFont systemFontOfSize:_fontSize] 设置字体
3.NSForegroundColorAttributeName :[UIColor redColor] 设置文字颜色
4.NSParagraphStyleAtt...
分类:
其他好文 时间:
2016-04-29 15:38:32
阅读次数:
116
IOS中十六进制的颜色转换为UIColor ...
分类:
移动开发 时间:
2016-04-26 14:04:30
阅读次数:
217
我们一般会用 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 *textview = [[UITextView alloc] initWithFrame:CGRectMake(20, 10, 280, 30)]; textview.backgroundColor=[UIColor whiteColor]; //背景色 ...
分类:
其他好文 时间:
2016-04-25 13:21:55
阅读次数:
137
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