123456789101112131415161718192021222324252627282930313233343536373839 |
- #import <UIKit/UIKit.h>
- #import "CTAssetThumbnailView.h"
- @interface CTAssetThumbnailStacks : UIView
- @property (nonatomic, assign) CGSize thumbnailSize;
- @property (nonatomic, copy, readonly) NSArray<CTAssetThumbnailView*> *thumbnailViews;
- @property (nonatomic, assign, readonly) UIEdgeInsets edgeInsets;
- - (nonnull CTAssetThumbnailView *)thumbnailAtIndex:(NSUInteger)index;
- - (void)setHighlighted:(BOOL)highlighted;
- @end
|