VLCBufferingBar.h 745 B

12345678910111213141516171819202122
  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 <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface VLCBufferingBar : UIView
  14. @property (nonatomic) CGFloat bufferStartFraction;
  15. @property (nonatomic) CGFloat bufferEndFraction;
  16. @property (nonatomic) UIColor *bufferColor;
  17. @property (nonatomic) UIColor *borderColor;
  18. @end
  19. NS_ASSUME_NONNULL_END