VLCEmptyLibraryView.h 867 B

12345678910111213141516171819202122232425
  1. /*****************************************************************************
  2. * VLCEmptyLibraryView.h
  3. * VLC for iOS
  4. *****************************************************************************
  5. * Copyright (c) 2018 VideoLAN. All rights reserved.
  6. * $Id$
  7. *
  8. * Authors: Mike JS. Choi <mkchoi212 # icloud.com>
  9. *
  10. * Refer to the COPYING file of the official project for license.
  11. *****************************************************************************/
  12. #import <UIKit/UIKit.h>
  13. @interface VLCEmptyLibraryView: UIView
  14. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
  15. @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
  16. @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator;
  17. @property (nonatomic, strong) IBOutlet UIButton *learnMoreButton;
  18. - (IBAction)learnMore:(id)sender;
  19. @end