GlitchKit
GlitchKit copied to clipboard
GlitchKit - Glitch on image in Objective-C

#import "GlitchKit.h"
// glitch!
[uiImageView glitch];

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

Installation
# Podfile
pod 'GlitchKit'