VLCPlaylistTableViewCell.h 543 B

123456789101112131415161718192021
  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. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  11. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  12. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  13. + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  14. + (CGFloat)heightOfCell;
  15. @end