VLCDropboxTableViewCell.h 732 B

1234567891011121314151617181920212223242526
  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. // Refer to the COPYING file of the official project for license.
  9. //
  10. #import <DropboxSDK/DropboxSDK.h>
  11. @interface VLCDropboxTableViewCell : UITableViewCell
  12. @property (nonatomic, strong) IBOutlet UILabel *titleLabel;
  13. @property (nonatomic, strong) IBOutlet UILabel *folderTitleLabel;
  14. @property (nonatomic, strong) IBOutlet UILabel *subtitleLabel;
  15. @property (nonatomic, strong) IBOutlet UIImageView *thumbnailView;
  16. @property (nonatomic, retain) DBMetadata *fileMetadata;
  17. + (VLCDropboxTableViewCell *)cellWithReuseIdentifier:(NSString *)ident;
  18. + (CGFloat)heightOfCell;
  19. @end