1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #import <UIKit/UIKit.h>
- #import <Photos/Photos.h>
- #import "CTAssetThumbnailStacks.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CTAssetCollectionViewCell : UITableViewCell
- @property (nonatomic, strong, readonly, nonnull) CTAssetThumbnailStacks *thumbnailStacks;
- @property (nonatomic, weak, nullable) UIFont *titleFont UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *titleTextColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *selectedTitleTextColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, weak, nullable) UIFont *countFont UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *countTextColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *selectedCountTextColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *accessoryColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong, nullable) UIColor *selectedAccessoryColor UI_APPEARANCE_SELECTOR;
- @property (nonatomic, weak, nullable) UIColor *selectedBackgroundColor UI_APPEARANCE_SELECTOR;
- - (instancetype)initWithThumbnailSize:(CGSize)size reuseIdentifier:(nullable NSString *)reuseIdentifier;
- - (void)bind:(nonnull PHAssetCollection *)collection count:(NSUInteger)count;
- @end
- NS_ASSUME_NONNULL_END
|