VLCLocalNetworkListCell.h 814 B

12345678910111213141516171819202122232425262728
  1. //
  2. // VLCLocalNetworkListCell.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 10.08.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <UIKit/UIKit.h>
  11. @interface VLCLocalNetworkListCell : UITableViewCell
  12. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  13. @property (nonatomic, strong) IBOutlet UILabel *folderTitleLabel;
  14. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  15. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  16. @property (nonatomic, readwrite) BOOL isDirectory;
  17. @property (nonatomic, retain) NSString *title;
  18. @property (nonatomic, retain) NSString *subtitle;
  19. + (VLCLocalNetworkListCell *)cellWithReuseIdentifier:(NSString *)ident;
  20. + (CGFloat)heightOfCell;
  21. @end