VLCDropboxTableViewCell.h 667 B

123456789101112131415161718192021222324
  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, strong) IBOutlet UIImageView *itemIsaFolderView;
  14. @property (nonatomic, retain) DBMetadata *fileMetadata;
  15. + (VLCDropboxTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  16. + (CGFloat)heightOfCell;
  17. @end