一. iOS后属性带UI_APPEARANCE_SELECTOR 可以统一设置全局作用 例如: 1>开关控件 @property(nullable, nonatomic, strong) UIColor *onTintColor NS_AVAILABLE_IOS(5_0) UI_APPEARANCE ...
分类:
移动开发 时间:
2016-04-04 13:01:21
阅读次数:
165
1、Hex值颜色转换 2、将UIColor转换为RGB值 3、16进制颜色(html颜色值)字符串转为UIColor ...
分类:
其他好文 时间:
2016-04-03 14:35:27
阅读次数:
155
scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)]; scrollView.backgroundColor = [UIColor redColor]; // 是否支持滑动最顶端 // scrollV ...
分类:
其他好文 时间:
2016-04-01 21:50:24
阅读次数:
121
对象的初始化有三种方式 // 代码创建 - (id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { self.backgroundColor = [UIColor clearColor]; [self c ...
分类:
其他好文 时间:
2016-04-01 18:03:53
阅读次数:
173
转载自原文:http://www.tuicool.com/articles/qmMjQnJ 包括以下几类: // 继承自 NSObject:(暂列为控件) UIColor *_color; // 颜色 UIImage *_image; // 图像 // 继承自 UIView: 只能相应手势 UIGe ...
分类:
移动开发 时间:
2016-03-31 14:37:28
阅读次数:
184
在UI框架中,这个类的使用频率非常之高。我们以一个小需求,引出我们的 UIColor . 需求: 分析:三个按钮底部的颜色均为半透明; 方案一:三个按钮均添加到一个View上,然后改变View的颜色透明通道(不是设置view.alpha = 0.5f)。 方案二:三个按钮均添加到一个View上,然后 ...
分类:
其他好文 时间:
2016-03-30 14:37:22
阅读次数:
207
label 加下划线 UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 100, 300, 100)]; label.backgroundColor = [UIColor redColor]; label.numberOfLi ...
分类:
移动开发 时间:
2016-03-29 21:07:27
阅读次数:
186
// NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 // NSForegroundColorAttributeNam 设置字体颜色,取值为 UIColor对象,默认值为黑色 // NSBackgroundColorAttributeN ...
分类:
移动开发 时间:
2016-03-28 23:29:00
阅读次数:
279
在用sketch设置好背景颜色,在Xcode里面设置时无论如何都设置错误, 究竟是为什么呢? 先来看看我之前使用的代码: [self.view setBackgroundColor:[UIColor colorWithRed:239/255 green:239/255 blue:244/255 al
分类:
其他好文 时间:
2016-03-23 16:51:09
阅读次数:
198
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:nil]; segmentedControl.tintColor = [UIColor orangeColor]; //渲染色彩 [seg
分类:
移动开发 时间:
2016-03-22 12:28:22
阅读次数:
183