12345678910111213141516171819202122232425 |
- //
- // VLCGridViewCell.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 11.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import "AQGridViewCell.h"
- @interface VLCPlaylistGridViewCell : AQGridViewCell
- {
- UILabel *_titleLabel;
- UILabel *_subtitleLabel;
- UIImageView *_thumbnailView;
- }
- @property (nonatomic, copy) UIImage *thumbnail;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic, copy) NSString *subtitle;
- - (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier;
- @end
|