// Created by 少林 on 15/11/26.// Copyright © 2015年 少林. All rights reserved.//#import "UIPillsViewBackgroundView.h"#define THE_VIEW_COLOR [UIColor whi.....
分类:
移动开发 时间:
2015-11-27 12:36:21
阅读次数:
258
界面属性的修改是每一个开发者必须知道的,为什么我就记不住呢, shit, 又耽误了时间,为了防止再找不到,特把一些常用的 CALayer属性记在这里,顺便分享 1.设置阴影1 imageView.layer.shadowColor = [UIColor grayColor].CGColor;2 i....
分类:
其他好文 时间:
2015-11-24 23:37:06
阅读次数:
348
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7){ self.navigationController.navigationBar.barTintColor = [UIColor redColor]; } self.na....
分类:
其他好文 时间:
2015-11-24 12:36:36
阅读次数:
205
//1、 UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(30, 100, 260, 40)]; //2、// textField.backgroundColor = [UIColor r...
分类:
其他好文 时间:
2015-11-23 18:33:35
阅读次数:
128
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom]; button.backgroundColor = [UIColor grayColor]; button.frame = CGRectMake(10, 20, 80,8....
分类:
其他好文 时间:
2015-11-22 13:45:42
阅读次数:
114
(一)UILabel空件属性:1.背景颜色 label.backgroundColor = [UIColor ***];2. 显示文字: label.text = @"******";3.改变文字颜色:label.text = [UIColor ***];4.调整文字字体大小: label.fon....
分类:
其他好文 时间:
2015-11-21 22:47:05
阅读次数:
128
// UIStepper的常用方法UIStepper *oneStepper = [[UIStepper alloc] init];oneStepper.frame = CGRectMake(20, 20, 20, 20);oneStepper.backgroundColor = [UIColor ...
分类:
其他好文 时间:
2015-11-21 18:36:19
阅读次数:
127
1.UIScroLLView基本1??:初始self.scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(100, 100,200, 400)];self.scrollView.backgroundColor = [UIColor w...
分类:
其他好文 时间:
2015-11-21 18:33:47
阅读次数:
199
1.UITextField1??:初始给值UITextField *textfield1= [[UITextField alloc]initWithFrame:CGRectMake(100, 100, 150, 40)];textfield1.backgroundColor = [UIColor c...
分类:
其他好文 时间:
2015-11-21 18:22:24
阅读次数:
164
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; self.window.backgroundColor = [UIColor whiteColor];UITabBarController *m....
分类:
其他好文 时间:
2015-11-20 21:30:59
阅读次数:
158