VLCPlaylistTableViewCell.h 634 B

12345678910111213141516171819202122232425
  1. //
  2. // VLCPlaylistTableViewCell.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 01.04.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface VLCPlaylistTableViewCell : UITableViewCell
  10. {
  11. UILabel *_titleLabel;
  12. UILabel *_subtitleLabel;
  13. UIImageView *_thumbnailView;
  14. }
  15. @property (nonatomic, retain) IBOutlet UILabel *titleLabel;
  16. @property (nonatomic, retain) IBOutlet UILabel *subtitleLabel;
  17. @property (nonatomic, retain) IBOutlet UIImageView *thumbnailView;
  18. + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  19. + (CGFloat)heightOfCell;
  20. @end