VLCPlaybackControlsFocusView.m 583 B

1234567891011121314151617181920
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Tobias Conradi <videolan # tobias-conradi.de>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import "VLCPlaybackControlsFocusView.h"
  12. @implementation VLCPlaybackControlsFocusView
  13. - (BOOL)canBecomeFocused {
  14. return YES;
  15. }
  16. @end