CPDFBookmarkViewCell.h 815 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // CPDFBookmarkViewCell.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. //
  11. #import <UIKit/UIKit.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface CPDFBookmarkViewCell : UITableViewCell
  14. @property (nonatomic, strong) UILabel *titleLabel;
  15. @property (nonatomic, strong) UILabel *pageIndexLabel;
  16. @property (nonatomic, strong) UIButton *moreButton;
  17. @property (nonatomic, strong) UIButton *deleteButton;
  18. @property (nonatomic, strong) UIButton *editButton;
  19. @end
  20. NS_ASSUME_NONNULL_END