12345678910111213141516171819202122232425 |
- /*****************************************************************************
- * VLCEmptyLibraryView.h
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2018 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Mike JS. Choi <mkchoi212 # icloud.com>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import <UIKit/UIKit.h>
- @interface VLCEmptyLibraryView: UIView
- @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLabel;
- @property (nonatomic, strong) IBOutlet UILabel *emptyLibraryLongDescriptionLabel;
- @property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicator;
- @property (nonatomic, strong) IBOutlet UIButton *learnMoreButton;
- - (IBAction)learnMore:(id)sender;
- @end
|