// // StampCollectionViewCell.h // PDFReader // // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved. // // The PDF Reader Sample applications are licensed with a modified BSD license. // Please see License for details. This notice may not be removed from this file. // #import #pragma mark - StampCollectionHeaderView @interface StampCollectionHeaderView : UICollectionReusableView @property (nonatomic,retain) UILabel *textLabel; @end #pragma mark - StampCollectionHeaderView1 @class StampCollectionHeaderView1; @protocol StampHeaderViewDelegate @optional - (void)addTextWithHeaderView:(StampCollectionHeaderView1 *)headerView; - (void)addImageWithHeaderView:(StampCollectionHeaderView1 *)headerView; @end #pragma mark - StampCollectionHeaderView1 @interface StampCollectionHeaderView1 : UICollectionReusableView @property (nonatomic,retain)UILabel *textLabel; @property (nonatomic,assign) id delegate; @end #pragma mark - StampCollectionViewCell @interface StampCollectionViewCell : UICollectionViewCell @property (nonatomic,retain)UIImageView *stampImage; @property (nonatomic,assign) BOOL editing; @end