CRPixellatedView icon indicating copy to clipboard operation
CRPixellatedView copied to clipboard

Custom UIView subclass with a pixellated animation inspired by Facebook's Slingshot app.

Results 3 CRPixellatedView issues
Sort by recently updated
recently updated
newest added

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) {...