CRPixellatedView
CRPixellatedView copied to clipboard
Custom UIView subclass with a pixellated animation inspired by Facebook's Slingshot app.
Hello I have a problem with this code: ``` self.pictureView.reverse = YES; self.pictureView.animationDuration = 0.5; self.pictureView.imageContentMode = UIViewContentModeScaleAspectFill; ``` At the end of the animation, my images are still pixelated...
Is it possible to have the image be pre-pixellated when it is added to the view rather than having to be animated? It would be great to be able to...
Is it possible to use CRPixellatedView inside a CRMotionView? This is what I am doing right now, is there a better way? ``` pixellatedView.image = image; [pixellatedView animateWithCompletion:^(BOOL finished) {...