VLCServerBrowsingTVCell.h 935 B

1234567891011121314151617181920212223242526
  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. #import "VLCServerBrowsingController.h"
  13. #import "VLCNetworkImageView.h"
  14. extern NSString *const VLCServerBrowsingTVCellIdentifier;
  15. @interface VLCServerBrowsingTVCell : UICollectionViewCell <VLCServerBrowsingCell>
  16. @property (nonatomic, weak) IBOutlet VLCNetworkImageView *thumbnailImageView;
  17. @property (nonatomic, weak) IBOutlet UILabel *titleLabel;
  18. @property (nonatomic, weak) IBOutlet UILabel *subtitleLabel;
  19. @property (nonatomic) BOOL isShowingAContainer;
  20. @end