A.关于Quiartz2D的一些细节1.UIKit的工具已经封装了上下文引用,所以不用手动获取和渲染1 - (void)drawRect:(CGRect)rect {2 [[UIColor redColor] set];3 UIRectFill(CGRectMake(0, 0, 10...
分类:
移动开发 时间:
2014-12-31 23:58:14
阅读次数:
700
import UIKitextension UIColor { convenience init(hex:Int, alpha:CGFloat=1.0) { let red = CGFloat((hex & 0xFF0000) >> 16)/255.0 let green = CGFl...
分类:
编程语言 时间:
2014-12-29 08:54:07
阅读次数:
151
@implementation CalendarByDicViewController- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor colorWithRed:0.93 ...
分类:
其他好文 时间:
2014-12-27 22:55:16
阅读次数:
217
两行代码搞定:[[UIBarButtonItem appearanceWhenContainedIn: [UISearchBar class], nil] setTintColor:[UIColor whiteColor]]; [[UIBarButtonItem appearanceWhenC...
分类:
移动开发 时间:
2014-12-25 20:15:56
阅读次数:
150
[treeTableView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight]; [treeTableView setBackgroundColor:[UIColor blu.....
分类:
其他好文 时间:
2014-12-25 14:20:21
阅读次数:
141
代码实现
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//使用图片初始化背景色
self.view.backgroundColor = [UIColor colorWithPat...
分类:
移动开发 时间:
2014-12-24 18:02:30
阅读次数:
139
在开发过程中,UE一般会给十六进制的颜色值,而如果RD同学每次都要去将十六进制进行转换,那太麻烦,这里写个预定义mark下。#define UIColorFromRGB(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >>...
分类:
移动开发 时间:
2014-12-23 10:24:45
阅读次数:
161
UIViewController 的创建方式分为三种 // 第一种创建方式 直接创建// ZYWViewController *vc = [[ZYWViewController alloc] init];// vc.view.backgroundColor = [UIColor blueCol...
分类:
其他好文 时间:
2014-12-21 20:35:26
阅读次数:
181
[self.view setBackgroundColor:[UIColor clearColor]];
分类:
移动开发 时间:
2014-12-20 23:18:39
阅读次数:
221
备注:CALayer是定义在QuartzCore框架中的;CGImageRef、CGColorRef两种数据类型是定义在CoreGraphics框架中的;UIColor、UIImage是定义在UIKit框架中的其次,QuartzCore框架和CoreGraphics框架是可以跨平台使用的,在iOS和...
分类:
其他好文 时间:
2014-12-16 14:44:53
阅读次数:
219