GlitchKit 0.0.3

GlitchKit 0.0.3

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布最新发布2014年12月

未声明维护。



GlitchKit 0.0.3

  • 作者:
  • Yuichi Tateno

GlitchKit - Objective-C 中图像上的Glitch

before glitch

#import "GlitchKit.h"

// glitch!
[uiImageView glitch];

after glitch

// apply custom glitch
[uiImageView glitchWithBlock:^int(int byte, int index, uint length, Byte *bytes) {
  return (byte == 42 && arc4random() % 3 == 1) ? 0 : byte;
}];

after glitch3

安装

# Podfile
pod 'GlitchKit'