1 通过 constrain 所设置的控件frame 在 viewDidLoad() 的时候还是不会更新的 在viewDidAppear() 已经更新 所以 在viewDidLoad() 调用 控件的frame 进行其它设置 会得到不想要的结果 2 UIColor 创建的任何颜色都是白色 这里UIC
分类:
其他好文 时间:
2016-03-22 12:17:18
阅读次数:
146
#define DEFAULT_VOID_COLOR [UIColor whiteColor]+ (UIColor *)colorWithHexString:(NSString *)stringToConvert { NSString *cString = [[stringToConvert str
分类:
移动开发 时间:
2016-03-21 21:38:55
阅读次数:
204
self.view.backgroundColor = [UIColor grayColor]; self.text = [[UITextField alloc] initWithFrame:CGRectMake(100, 100, 200, 110)]; self.text.text = @"空间
分类:
其他好文 时间:
2016-03-16 22:45:31
阅读次数:
360
#pragma mark - 定制全局的Bar -(void)customAllBar{ //定制所有的Bar的背景颜色和标题外观 [UINavigationBar appearance].barTintColor = [UIColor lightGrayColor];
分类:
移动开发 时间:
2016-03-13 22:32:31
阅读次数:
247
+(void)initialize{ UINavigationBar *item = [UINavigationBar appearance]; // 按钮的颜色 item.tintColor = [UIColor redColor]; // 整个背景的颜色 item.barTintColor =
分类:
移动开发 时间:
2016-03-10 20:17:32
阅读次数:
304
//1.初始化视图 self.myView=[[UIView alloc] initWithFrame:CGRectMake(100, 50, 200, 400)]; //2.myview的背景色 self.myView.backgroundColor=[UIColor redColor]; //3
分类:
其他好文 时间:
2016-03-07 22:27:18
阅读次数:
152
switch (buttonIndex) { case 0: aColor = [UIColor redColor]; bColor = [UIColor colorWithRed:0.97 green:0.68 blue:0.75 alpha:1.0];// 鸨色 break; case 1: a
分类:
其他好文 时间:
2016-03-06 14:09:02
阅读次数:
134
关于颜色的宏定义 // 根据指定的 RGB 创建 UIColor #define RGB(r, g, b) ([UIColor colorWithRed:(r / 255.0) green:(g / 255.0) blue:(b / 255.0) alpha:1.0]) /// 创建随机颜色 #de
分类:
其他好文 时间:
2016-03-04 10:24:33
阅读次数:
155
// // ViewController.m // text // // Created by 李东旭 on 16/1/22. // Copyright © 2016年 李东旭. All rights reserved. // #import <UIKit/UIKit.h> #import "Vie
分类:
移动开发 时间:
2016-03-03 22:38:25
阅读次数:
271
一.添加子视图控制器 二.设置颜色 设置颜色:两种方法 一种较为繁琐,详见视频 第二种: //设置颜色 self.tabBar.tintColor = UIColor.orangeColor()
分类:
其他好文 时间:
2016-03-03 06:50:20
阅读次数:
115