12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #import <UIKit/UIKit.h>
- #import "CTAssetThumbnailView.h"
- NS_ASSUME_NONNULL_BEGIN
- @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
- NS_ASSUME_NONNULL_END
|