CStampCollectionViewCell.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // CStampCollectionViewCell.h
  3. // ComPDFKit_Tools
  4. //
  5. // Copyright © 2014-2024 PDF Technologies, Inc. All Rights Reserved.
  6. //
  7. // THIS SOURCE CODE AND ANY ACCOMPANYING DOCUMENTATION ARE PROTECTED BY INTERNATIONAL COPYRIGHT LAW
  8. // AND MAY NOT BE RESOLD OR REDISTRIBUTED. USAGE IS BOUND TO THE ComPDFKit LICENSE AGREEMENT.
  9. // UNAUTHORIZED REPRODUCTION OR DISTRIBUTION IS SUBJECT TO CIVIL AND CRIMINAL PENALTIES.
  10. // This notice may not be removed from this file.
  11. //
  12. #import <UIKit/UIKit.h>
  13. NS_ASSUME_NONNULL_BEGIN
  14. #pragma mark - StampCollectionHeaderView
  15. @interface StampCollectionHeaderView : UICollectionReusableView
  16. @property (nonatomic,retain) UILabel *textLabel;
  17. @end
  18. #pragma mark - StampCollectionHeaderView1
  19. @class StampCollectionHeaderView1;
  20. @protocol StampHeaderViewDelegate <NSObject>
  21. @optional
  22. - (void)addTextWithHeaderView:(StampCollectionHeaderView1 *)headerView;
  23. - (void)addImageWithHeaderView:(StampCollectionHeaderView1 *)headerView;
  24. @end
  25. #pragma mark - StampCollectionHeaderView1
  26. @interface StampCollectionHeaderView1 : UICollectionReusableView
  27. @property (nonatomic,retain)UILabel *textLabel;
  28. @property (nonatomic,assign) id<StampHeaderViewDelegate> delegate;
  29. @end
  30. #pragma mark - StampCollectionViewCell
  31. @interface CStampCollectionViewCell : UICollectionViewCell
  32. @property (nonatomic, strong) UIImageView *stampImage;
  33. @property (nonatomic, assign) BOOL editing;
  34. @end
  35. NS_ASSUME_NONNULL_END