定义tabBarController控制器 //设置图片的颜色和大小 - (UIImage *)YZImageWithColor:(UIColor *)color andSize:(CGSize)size{ CGRect rect = CGRectMake(0.0f, 0.0f, size.widt ...
分类:
其他好文 时间:
2016-04-18 15:03:19
阅读次数:
243
UIView *bgRight=[[UIView alloc]initWithFrame:CGRectMake(SCREEN_WIDTH/2, 0, SCREEN_WIDTH/2, 35)]; bgRight.backgroundColor=[UIColor whiteColor]; [bgView ...
分类:
其他好文 时间:
2016-04-18 13:22:24
阅读次数:
161
#pargma mark - Layer 1. 设置当前视图的背景颜色 self.view.backgroundColor = [UIColor lightGrayColor]; 2. 创建一个视图,并且设置frame UIView *myView = [[UIView alloc]initWith ...
分类:
其他好文 时间:
2016-04-16 10:55:38
阅读次数:
148
self.navigationController.navigationBar.barTintColor =[UIColor colorWithRed:70/255.0green:193/255.0 blue:14/255.0 alpha:1.0]; // 设置导航条的透明 // [self set ...
分类:
其他好文 时间:
2016-04-15 20:11:22
阅读次数:
131
这个是Mac自带的测色计 快捷键shift + command + c即可复制RBG格式的颜色 #DD0000 这个是csdn 的logo里的红色 我们得到的是十六位颜色代码 但是UIColor()只有这几种初始化方式 只支持CGFloat格式 所以我们需要进行转换 http://www.zzsky ...
分类:
其他好文 时间:
2016-04-15 00:36:35
阅读次数:
138
UIColor blackColor UIColor darkGrayColor UIColor lightGrayColor UIColor whiteColor UIColor grayColor UIColor redColor UIColor greenColor UIColor blueC ...
分类:
其他好文 时间:
2016-04-14 14:19:57
阅读次数:
287
ios开发autolayout之代码实现Autolayout使用总结
1.理论部分
demo示例1:
UIView *blueView = [[UIView alloc] init];
blueView.backgroundColor = [UIColor blueColor];
// 不要将AutoresizingMask转为Autolayout的约束...
分类:
移动开发 时间:
2016-04-12 17:37:07
阅读次数:
475
1、返回按钮的颜色 self.navigationController.navigationBar.tintColor = [UIColor whiteColor]; 2、设置返回按钮的内容 A -> B 在push的时候,在A中添加代码: UIBarButtonItem *backItem = [ ...
分类:
移动开发 时间:
2016-04-11 18:41:56
阅读次数:
211
#import <UIKit/UIKit.h> @interface UIColor (Hex) // 默认alpha位1 + (UIColor *)colorWithHexString:(NSString *)color; //从十六进制字符串获取颜色, //color:支持@“#123456”、 ...
分类:
其他好文 时间:
2016-04-09 12:21:00
阅读次数:
247
self.TextField.backgroundColor = [[UIColor whiteColor] colorWithAlphaComponent:1.0]; ...
分类:
其他好文 时间:
2016-04-05 19:37:53
阅读次数:
102