No Description

QBAssetCell.h 465B

123456789101112131415161718192021
  1. //
  2. // QBAssetCell.h
  3. // QBImagePicker
  4. //
  5. // Created by Katsuma Tanaka on 2015/04/03.
  6. // Copyright (c) 2015 Katsuma Tanaka. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class QBVideoIndicatorView;
  10. @interface QBAssetCell : UICollectionViewCell
  11. @property (weak, nonatomic) IBOutlet UIImageView *imageView;
  12. @property (weak, nonatomic) IBOutlet QBVideoIndicatorView *videoIndicatorView;
  13. @property (nonatomic, assign) BOOL showsOverlayViewWhenSelected;
  14. @end