VLCPlaylistGridViewCell.h 549 B

12345678910111213141516171819202122232425
  1. //
  2. // VLCGridViewCell.h
  3. // AspenProject
  4. //
  5. // Created by Felix Paul Kühne on 11.04.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import "AQGridViewCell.h"
  9. @interface VLCPlaylistGridViewCell : AQGridViewCell
  10. {
  11. UILabel *_titleLabel;
  12. UILabel *_subtitleLabel;
  13. UIImageView *_thumbnailView;
  14. }
  15. @property (nonatomic, copy) UIImage *thumbnail;
  16. @property (nonatomic, copy) NSString *title;
  17. @property (nonatomic, copy) NSString *subtitle;
  18. - (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier;
  19. @end