来自转载:http://my.oschina.net/leejan97/blog/307491摘要: 可以直接使用十六进制设置控件的颜色,而不必通过除以255.0进行转换#defineUIColorCategoryUIBarButtonItem新建一个Category,命名为UIColor+Hex,...
分类:
移动开发 时间:
2016-01-13 15:51:45
阅读次数:
206
self.navigationController.navigationBar.barTintColor = [UIColor blackColor];self.navigationController.navigationBar.tintColor = [UIColor whiteColor];[...
分类:
移动开发 时间:
2016-01-12 11:37:24
阅读次数:
138
3.函数:在Swift中函数的定义基本与OC一样。主要区别为:通过func关键词定义函数返回值在->关键词后标注各举一个类方法与实例方法例子。12+(UIColor*)blackColor-(void)addSubview:(UIView*)view对应的swift版本12classfuncblac...
分类:
编程语言 时间:
2016-01-11 11:57:36
阅读次数:
243
圆角sampleView.layer.cornerRadius = 2.5; // 圓角的弧度sampleView.layer.masksToBounds = YES;阴影sampleView.layer.shadowColor = [[UIColor blackColor] CGColor];sa...
分类:
移动开发 时间:
2016-01-09 20:04:04
阅读次数:
197
最近看了看CoreGraphics的东西,看到关于CGColor的东西,于是就想着顺便看看UIColor,CIColor,弄清楚它们之间的区别和联系。下面我们分别看看它们三个的概念:一、UIColor UIColor是UIKit中存储颜色信息的一个重要的类,一个UIColor对象包含了颜色和透明度....
分类:
其他好文 时间:
2016-01-09 12:36:53
阅读次数:
122
Objective-CUIColor -> UIImage?1234567891011-(UIImage*)createImageWithColor:(UIColor*)color{CGRectrect=CGRectMake(0.0f,0.0f,1.0f,1.0f);UIGraphicsBeginI...
分类:
其他好文 时间:
2016-01-09 12:35:24
阅读次数:
122
在继承UIView 创建PIDrawerView类,.m中申明一个枚举类型NS_ENUM,set 与get 画线类型DrawingMode和颜色设置UIColor#import typedef NS_ENUM(NSInteger, DrawingMode) { DrawingModeNone = ....
分类:
其他好文 时间:
2016-01-06 09:11:23
阅读次数:
200
1.NSKernAttributeName:@10 调整字句 kerning 字句调整2.NSFontAttributeName :[UIFont systemFontOfSize:_fontSize] 设置字体3.NSForegroundColorAttributeName:[UIColor re...
分类:
移动开发 时间:
2016-01-05 15:18:08
阅读次数:
529
//1.设置背景 //tf.backgroundColor = [[UIColor blueColor] colorWithAlphaComponent:0.7]; //2.设置输入框的样式 /* UITextBorderStyleNone, 默认样式,无样式 UITextBorder...
分类:
其他好文 时间:
2016-01-05 01:26:35
阅读次数:
259
1.创建一个视图 UIView *redView = [[UIView alloc] initWithFrame:CGRectMake(50, 10, 200, 200)];2.设置视图的背景颜色 [redView setBackgroundColor:[UIColor redColor]]; .....
分类:
其他好文 时间:
2016-01-04 22:27:16
阅读次数:
184