1234567891011121314151617 |
- //
- // VLCPlaybackControlsFocusView.m
- // VLC for iOS
- //
- // Created by Tobias Conradi on 28.10.15.
- // Copyright © 2015 VideoLAN. All rights reserved.
- //
- #import "VLCPlaybackControlsFocusView.h"
- @implementation VLCPlaybackControlsFocusView
- - (BOOL)canBecomeFocused {
- return YES;
- }
- @end
|