123456789101112131415161718192021 |
- //
- // VLCPlaylistTableViewCell.h
- // AspenProject
- //
- // Created by Felix Paul Kühne on 01.04.13.
- // Copyright (c) 2013 VideoLAN. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface VLCPlaylistTableViewCell : UITableViewCell
- @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
- @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
- @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
- + (VLCPlaylistTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
- + (CGFloat)heightOfCell;
- @end
|