UIColor转十六进制字符串 方法一:经过测试发现部分颜色会转化为#fffff(五个f),转化残缺导致最后颜色无法还原,不推荐使用。 // UIColor转#ffffff格式的字符串 + (NSString *)hexFromUIColor:(UIColor *)color { if (CGCol... ...
分类:
其他好文 时间:
2017-12-14 21:17:45
阅读次数:
166
一、导航栏的背景和文字Color: 方法一: //设置NavigationBar 背景颜色&title 颜色 [self.navigationController.navigationBar setBarTintColor:[UIColor colorWithRed:20/255.0 green:1 ...
分类:
移动开发 时间:
2017-12-14 14:57:08
阅读次数:
187
- (UIButton *)navSearBtn { if (!_navSearBtn) { _navSearBtn = [[UIButton alloc]init]; _navSearBtn.backgroundColor = [UIColor clearColor]; _navSearBtn.t... ...
分类:
其他好文 时间:
2017-12-07 13:18:50
阅读次数:
137
1.初始化YYAnimatedImageViewYYAnimatedImageView *imageView = [[YYAnimatedImageView alloc] init];imageView.backgroundColor = [UIColor whiteColor];imageView ...
分类:
其他好文 时间:
2017-11-30 12:16:01
阅读次数:
2609
1.发短信 头文件 头部代理 发送信息 代理方法实现 2.拨打电话 3.发送邮件 4.发送QQ消息 ...
分类:
移动开发 时间:
2017-11-16 14:08:46
阅读次数:
207
var bgImage = UIImageView() var backButton = UIButton() var titleLabel = UILabel() let screen_h = UIScreen.main.bounds.height let screen_w = UIScreen. ...
分类:
编程语言 时间:
2017-11-07 22:11:00
阅读次数:
301
if (indexPath.row % 2 == 0) { cell.backgroundColor = [UIColor magentaColor]; }else{ cell.backgroundColor = [UIColor whiteColor]; } ...
分类:
移动开发 时间:
2017-11-02 18:18:33
阅读次数:
225
自从IOS7后UINavigationBar的一些属性的行为发生了变化.你可以在下图看到: 现在,如果你要修改它们的颜色,用下面的代码: 1 2 3 4 self.navigationController.navigationBar.barTintColor = [UIColor blackColo ...
分类:
移动开发 时间:
2017-10-22 22:06:55
阅读次数:
343
图层行为 现在来做个实验,试着直接对UIView关联的图层做动画而不是一个单独的图层。清单7.4是对清单7.2代码的一点修改,移除了colorLayer,并且直接设置layerView关联图层的背景色。 清单7.4 直接设置图层的属性 1 @interface ViewController () 2 ...
分类:
其他好文 时间:
2017-10-04 14:09:56
阅读次数:
179
事务 Core Animation基于一个假设,说屏幕上的任何东西都可以(或者可能)做动画。动画并不需要你在Core Animation中手动打开,相反需要明确地关闭,否则他会一直存在。 当你改变CALayer的一个可做动画的属性,它并不能立刻在屏幕上体现出来。相反,它是从先前的值平滑过渡到新的值。 ...
分类:
其他好文 时间:
2017-10-04 00:19:27
阅读次数:
213