VLCPlaybackControlsFocusView.m 295 B

1234567891011121314151617
  1. //
  2. // VLCPlaybackControlsFocusView.m
  3. // VLC for iOS
  4. //
  5. // Created by Tobias Conradi on 28.10.15.
  6. // Copyright © 2015 VideoLAN. All rights reserved.
  7. //
  8. #import "VLCPlaybackControlsFocusView.h"
  9. @implementation VLCPlaybackControlsFocusView
  10. - (BOOL)canBecomeFocused {
  11. return YES;
  12. }
  13. @end