1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- //
- // 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 <UIKit/UIKit.h>
- #pragma mark - StampCollectionHeaderView
- @interface StampCollectionHeaderView : UICollectionReusableView
- @property (nonatomic,retain) UILabel *textLabel;
- @end
- #pragma mark - StampCollectionHeaderView1
- @class StampCollectionHeaderView1;
- @protocol StampHeaderViewDelegate <NSObject>
- @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<StampHeaderViewDelegate> delegate;
- @end
- #pragma mark - StampCollectionViewCell
- @interface StampCollectionViewCell : UICollectionViewCell
- @property (nonatomic,retain)UIImageView *stampImage;
- @property (nonatomic,assign) BOOL editing;
- @end
|