Explorar el Código

handle remoteControl events for next and back

Carola Nitz hace 11 años
padre
commit
b4f67543dd
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3 0
      Sources/VLCMovieViewController.m

+ 3 - 0
Sources/VLCMovieViewController.m

@@ -716,12 +716,15 @@
 
         case UIEventSubtypeRemoteControlNextTrack:
             [self forward:nil];
+            break;
 
         case UIEventSubtypeRemoteControlPreviousTrack:
             [self backward:nil];
+            break;
 
         case UIEventSubtypeRemoteControlStop:
             [self closePlayback:nil];
+            break;
 
         default:
             break;