Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CTAssetsPickerController/CTAssetCollectionViewCell.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#import <Photos/Photos.h>
#import "CTAssetThumbnailStacks.h"


NS_ASSUME_NONNULL_BEGIN

@interface CTAssetCollectionViewCell : UITableViewCell

Expand All @@ -51,4 +51,6 @@
- (instancetype)initWithThumbnailSize:(CGSize)size reuseIdentifier:(nullable NSString *)reuseIdentifier;
- (void)bind:(nonnull PHAssetCollection *)collection count:(NSUInteger)count;

@end
@end

NS_ASSUME_NONNULL_END
4 changes: 4 additions & 0 deletions CTAssetsPickerController/CTAssetThumbnailStacks.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#import <UIKit/UIKit.h>
#import "CTAssetThumbnailView.h"

NS_ASSUME_NONNULL_BEGIN

@interface CTAssetThumbnailStacks : UIView

@property (nonatomic, assign) CGSize thumbnailSize;
Expand All @@ -37,3 +39,5 @@
- (void)setHighlighted:(BOOL)highlighted;

@end

NS_ASSUME_NONNULL_END
2 changes: 1 addition & 1 deletion CTAssetsPickerController/CTAssetsGridViewController.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

@interface CTAssetsGridViewController : UICollectionViewController

@property (nonatomic, weak) id<CTAssetsGridViewControllerDelegate> delegate;
@property (nonatomic, weak, nullable) id<CTAssetsGridViewControllerDelegate> delegate;
@property (nonatomic, strong, nonnull) PHAssetCollection *assetCollection;

@end
Expand Down