1234567891011121314151617181920212223242526272829303132333435363738 |
- #import <UIKit/UIKit.h>
- #import <Photos/Photos.h>
- @interface CTAssetThumbnailView : UIView
- @property (nonatomic, assign) BOOL showsDuration;
- @property (nonatomic, strong, nullable) UIImage *backgroundImage;
- - (void)bind:(nullable UIImage *)image asset:(nullable PHAsset *)asset;
- - (void)bind:(nullable UIImage *)image assetCollection:(nullable PHAssetCollection *)assetCollection;
- @end
|