RCLighting

https://github.com/RidgeCorn/RCLighting

效果:

真机测试的效率:

看了源码,其实原理很简单:

================================

1. 实现UIView的category

2. 继承了一个CALayer

3. 将这个继承的CALayer插入到UIView的subLayer中

4. 对这个layer进行动画操作

================================

源码:

  1. //
  2. // RootViewController.m
  3. // Lighting
  4. //
  5. // Copyright (c) 2014年 Y.X. All rights reserved.
  6. //
  7.  
  8. #import "RootViewController.h"
  9. #import "RCLighting.h"
  10.  
  11. @interface RootViewController ()
  12.  
  13. @end
  14.  
  15. @implementation RootViewController
  16.  
  17. - (void)viewDidLoad
  18. {
  19. [super viewDidLoad];
  20. self.view.backgroundColor = [UIColor blackColor];
  21.  
  22. // 辉光view
  23. UIView *showView = [[UIView alloc] initWithFrame:CGRectMake(, , , )];
  24. showView.alpha = 0.8f;
  25. showView.backgroundColor = [UIColor redColor];
  26. showView.center = self.view.center;
  27. [self.view addSubview:showView];
  28. [showView showLightingWithColors:@[[UIColor brownColor],
  29. [UIColor greenColor],
  30. [UIColor cyanColor],
  31. [UIColor orangeColor],
  32. [UIColor purpleColor],
  33. [UIColor magentaColor],
  34. [UIColor redColor],
  35. [UIColor yellowColor],
  36. [UIColor blueColor]]];
  37.  
  38. // 中间显示字体
  39. UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(, , , )];
  40. label.textAlignment = NSTextAlignmentCenter;
  41. label.textColor = [UIColor whiteColor];
  42. label.font = [UIFont fontWithName:@"HelveticaNeue-UltraLight"
  43. size:.f];
  44. label.text = @"YouXianMing";
  45. label.center = self.view.center;
  46. [self.view addSubview:label];
  47. }
  48.  
  49. @end

注意哦,源码中有用到POP库动画

RCLighting的更多相关文章

随机推荐

  1. JavaScript设计模式-16.装饰者模式(上)

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  2. Struts2 Validate

    1.自定义action继承ActionSupport 2.复写validate方法,因为ActionSupport实现了Validate这个借口,而这个借口中定义了validate方法 3.当请求时, ...

  3. PHP之string之wordwrap()函数使用

    wordwrap (PHP 4 >= 4.0.2, PHP 5, PHP 7) wordwrap - Wraps a string to a given number of characters ...

  4. session_start()导致history.go(-1)返回时无法保存表单数据的解决方法

    问题背景: 在填写完表单提交时,由于某个表单项可能填写的不合法,导致提交失败,返回表单页面.但返回后所有的表单都被清空了,重新填写比较麻烦,度娘解释说,是由于每个页面都调用了session_start ...

  5. jdbc oracle clob

    import java.io.BufferedReader; import java.io.Reader; import java.io.Writer; import java.sql.Callabl ...

  6. IE的if条件判断

    我们经常需要编写兼容代码,特别是万恶的IE. 特此记录下IE提供的if判断: <!--[if IE 5]> 仅IE5.0与IE5.5可以识别 <![endif]--> < ...

  7. Angular: 使用 RxJS Observables 来实现简易版的无限滚动加载指令

    我使用 angular-cli 来搭建项目. ng new infinite-scroller-poc --style=scss 项目生成好后,进入 infinite-scroller-poc 目录下 ...

  8. js判断向量叉点 并求出交点坐标

     代码如下可以直接运行,判断向量相交并求出交点坐标 <!DOCTYPE html> <html> <head> <meta http-equiv=" ...

  9. js post跳转

    function clickFunc(id) { var params = new Array(); params.push({ name: "id", value: id}); ...

  10. C# 文件上传 制作水印

    其实C#的文件上传是非常简单的 前台代码 <asp:FileUpload ID="FileUpload1" accept=".jpg,.png,.jpeg" ...