StampCollectionViewCell.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // StampCollectionViewCell.h
  3. // PDFReader
  4. //
  5. // Copyright © 2014-2022 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // The PDF Reader Sample applications are licensed with a modified BSD license.
  8. // Please see License for details. This notice may not be removed from this file.
  9. //
  10. #import <UIKit/UIKit.h>
  11. #pragma mark - StampCollectionHeaderView
  12. @interface StampCollectionHeaderView : UICollectionReusableView
  13. @property (nonatomic,retain) UILabel *textLabel;
  14. @end
  15. #pragma mark - StampCollectionHeaderView1
  16. @class StampCollectionHeaderView1;
  17. @protocol StampHeaderViewDelegate <NSObject>
  18. @optional
  19. - (void)addTextWithHeaderView:(StampCollectionHeaderView1 *)headerView;
  20. - (void)addImageWithHeaderView:(StampCollectionHeaderView1 *)headerView;
  21. @end
  22. #pragma mark - StampCollectionHeaderView1
  23. @interface StampCollectionHeaderView1 : UICollectionReusableView
  24. @property (nonatomic,retain)UILabel *textLabel;
  25. @property (nonatomic,assign) id<StampHeaderViewDelegate> delegate;
  26. @end
  27. #pragma mark - StampCollectionViewCell
  28. @interface StampCollectionViewCell : UICollectionViewCell
  29. @property (nonatomic,retain)UIImageView *stampImage;
  30. @property (nonatomic,assign) BOOL editing;
  31. @end