hyd00

Results 24 comments of hyd00

Only works on Sepia and Posterize filters. Crashes on all the rest. iOS 8+

faced same issue. [This](http://stackoverflow.com/questions/37807083/xcode-8-objc-unretainedpointer-is-unavailable-use-a-bridge-cast-instead) might help

@joestelmach Please excuse me for asking, Your solution works perfectly, and you are right, it also fires on short press of the button. Any hint as to how I can...

I did this but it's not working properly: ``` //Volume button handler self.volumeButtonHandler = [JPSVolumeButtonHandler volumeButtonHandlerWithUpBlock:^{ // Volume Up Button Pressed ++secondsElapsed; [self onVolumeUp]; } downBlock:^{ // Volume Down Button...

Tried. Same issue. When release the button after long press, it fires the desired method. :(

``` //Volume` button handler self.volumeButtonHandler = [JPSVolumeButtonHandler volumeButtonHandlerWithUpBlock:^{ // Volume Up Button Pressed [self onVolumeUp]; } downBlock:^{ // Volume Down Button Pressed }]; -(void)onVolumeUp { if(self.volButtonTimer) { secondsElapsed = 1;...