VLCDropboxTableViewCell.h 596 B

1234567891011121314151617181920212223
  1. //
  2. // VLCDropboxTableViewCell.h
  3. // VLC for iOS
  4. //
  5. // Created by Felix Paul Kühne on 24.05.13.
  6. // Copyright (c) 2013 VideoLAN. All rights reserved.
  7. //
  8. #import <DropboxSDK/DropboxSDK.h>
  9. @interface VLCDropboxTableViewCell : UITableViewCell
  10. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  11. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  12. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  13. @property (nonatomic, retain) DBMetadata *fileMetadata;
  14. + (VLCDropboxTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  15. + (CGFloat)heightOfCell;
  16. @end