1.
[[UINavigationBar
appearance]setBarTintColor:[UIColor
yellowColor]];效果如下:(适用于xcode5及ios7以上)
2.
[[UINavigationBar appearance]setTranslucent:NO];效果如下:
3.
[[UINavigationBa...
分类:
其他好文 时间:
2015-05-28 09:36:05
阅读次数:
119
#pragma mark - 颜色转换 IOS中十六进制的颜色转换为UIColor
+ (UIColor *) colorWithHexString: (NSString *)color
{
NSString *cString = [[color stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNe...
分类:
移动开发 时间:
2015-05-27 10:21:19
阅读次数:
140
UIColor+Hex.h//// UIColor+Hex.h// 16进制颜色类别//// Created by apple on 15-4-3.// Copyright (c) 2015年 apple. All rights reserved.//#import #define RGBA...
分类:
移动开发 时间:
2015-05-25 20:12:11
阅读次数:
149
iOS之给button加边框 . 圆角弧度 . 加阴影 avatarImage = [UIButton buttonWithType:UIButtonTypeCustom]; //给按钮加一个白色的板框 avatarImage.layer.borderColor = [[UIColor whiteColor] CGColor]; avatarImage.la...
分类:
移动开发 时间:
2015-05-25 14:38:55
阅读次数:
249
NSMutableAttributedString *attString = [[NSMutableAttributedString
alloc]
initWithString:@"进击的巨人"];
NSShadow *shadow = [[NSShadow
alloc]init];
shadow.shadowColor = [UIColor
darkGrayCol...
分类:
移动开发 时间:
2015-05-23 10:07:48
阅读次数:
230
代码:- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. self.view.backgroundColor=[UIColor whiteColor]; ...
分类:
其他好文 时间:
2015-05-22 21:07:21
阅读次数:
118
一 插件简介:其github地址:https://github.com/li6185377/LKDBHelper-SQLite-ORM全面支持 NSArray,NSDictionary, ModelClass, NSNumber, NSString, NSDate, NSData, UIColor,...
分类:
移动开发 时间:
2015-05-22 16:32:31
阅读次数:
1226
UIColor+ (UIColor *)blackColor; // 0.0 white 黑色+ (UIColor *)darkGrayColor; // 0.333 white 深灰色+ (UIColor *)lightGrayColor; // 0.667 white 亮灰色+ ...
分类:
移动开发 时间:
2015-05-21 12:38:16
阅读次数:
144
——[UIScreen mainScreen].bound 得到主屏幕的rect——MAX(A,B) 系统自带的宏定义,用来得出A,B两数中的最大值——清除颜色 [UIColor clearColor] ——RGB里德数值都要除以255,都是0~1内的数值 巧妙运用头文件,从而实现#define ....
分类:
其他好文 时间:
2015-05-17 23:29:02
阅读次数:
157
- (id)initWithFrame:(CGRect)aRect //通过一个矩形对象初始化Configuring a View’s Visual Appearance //配置视觉展示@property(nonatomic, copy) UIColor *backgroundColor //设置...
分类:
其他好文 时间:
2015-05-17 18:37:45
阅读次数:
88