RCLighting
RCLighting
https://github.com/RidgeCorn/RCLighting
效果:
真机测试的效率:
看了源码,其实原理很简单:
================================
1. 实现UIView的category
2. 继承了一个CALayer
3. 将这个继承的CALayer插入到UIView的subLayer中
4. 对这个layer进行动画操作
================================
源码:
- //
- // RootViewController.m
- // Lighting
- //
- // Copyright (c) 2014年 Y.X. All rights reserved.
- //
- #import "RootViewController.h"
- #import "RCLighting.h"
- @interface RootViewController ()
- @end
- @implementation RootViewController
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- self.view.backgroundColor = [UIColor blackColor];
- // 辉光view
- UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(, , , )];
- showView.alpha = 0.8f;
- showView.backgroundColor = [UIColor redColor];
- showView.center = self.view.center;
- [self.view addSubview:showView];
- [showView showLightingWithColors:@[[UIColor brownColor],
- [UIColor greenColor],
- [UIColor cyanColor],
- [UIColor orangeColor],
- [UIColor purpleColor],
- [UIColor magentaColor],
- [UIColor redColor],
- [UIColor yellowColor],
- [UIColor blueColor]]];
- // 中间显示字体
- UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(, , , )];
- label.textAlignment = NSTextAlignmentCenter;
- label.textColor = [UIColor whiteColor];
- label.font = [UIFont fontWithName:@"HelveticaNeue-UltraLight"
- size:.f];
- label.text = @"YouXianMing";
- label.center = self.view.center;
- [self.view addSubview:label];
- }
- @end
注意哦,源码中有用到POP库动画
RCLighting的更多相关文章
随机推荐
- JavaScript设计模式-16.装饰者模式(上)
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...
- Struts2 Validate
1.自定义action继承ActionSupport 2.复写validate方法,因为ActionSupport实现了Validate这个借口,而这个借口中定义了validate方法 3.当请求时, ...
- PHP之string之wordwrap()函数使用
wordwrap (PHP 4 >= 4.0.2, PHP 5, PHP 7) wordwrap - Wraps a string to a given number of characters ...
- session_start()导致history.go(-1)返回时无法保存表单数据的解决方法
问题背景: 在填写完表单提交时,由于某个表单项可能填写的不合法,导致提交失败,返回表单页面.但返回后所有的表单都被清空了,重新填写比较麻烦,度娘解释说,是由于每个页面都调用了session_start ...
- jdbc oracle clob
import java.io.BufferedReader; import java.io.Reader; import java.io.Writer; import java.sql.Callabl ...
- IE的if条件判断
我们经常需要编写兼容代码,特别是万恶的IE. 特此记录下IE提供的if判断: <!--[if IE 5]> 仅IE5.0与IE5.5可以识别 <![endif]--> < ...
- Angular: 使用 RxJS Observables 来实现简易版的无限滚动加载指令
我使用 angular-cli 来搭建项目. ng new infinite-scroller-poc --style=scss 项目生成好后,进入 infinite-scroller-poc 目录下 ...
- js判断向量叉点 并求出交点坐标
代码如下可以直接运行,判断向量相交并求出交点坐标 <!DOCTYPE html> <html> <head> <meta http-equiv=" ...
- js post跳转
function clickFunc(id) { var params = new Array(); params.push({ name: "id", value: id}); ...
- C# 文件上传 制作水印
其实C#的文件上传是非常简单的 前台代码 <asp:FileUpload ID="FileUpload1" accept=".jpg,.png,.jpeg" ...