CPDFPageRangeDropDownList.h 483 B

12345678910111213141516171819202122
  1. //
  2. // CPDFPageRangeDropDownList.h
  3. // PDFViewer
  4. //
  5. // Created by kdan on 2022/11/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CPDFPageRangeDropDownList : UIView
  10. @property (nonatomic,retain)UITextField *textField;
  11. @property (nonatomic,retain)NSArray* list;
  12. @property (nonatomic,retain)UITableView* listView;
  13. @property (nonatomic,retain)UIColor *lineColor,*listBgColor;
  14. @property (nonatomic,assign)UITextBorderStyle borderStyle;
  15. @end
  16. NS_ASSUME_NONNULL_END