PDFKTFontNameView.h 765 B

123456789101112131415161718192021222324252627
  1. //
  2. // PDFKTFontNameView.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. @protocol PDFKTfontNamesDelegate;
  12. @interface PDFKTFontNameView : UIView <UITableViewDelegate,UITableViewDataSource>
  13. @property (nonatomic, assign) id<PDFKTfontNamesDelegate> fontNamedelegate;
  14. @property (nonatomic, retain) NSArray *fontNames;
  15. @property (nonatomic, retain) NSString *fontName;
  16. @end
  17. @protocol PDFKTfontNamesDelegate <NSObject>
  18. - (void)fontNamesView:(PDFKTFontNameView*)fontNamesView didSelectedTextFontName:(NSString *)fontName;
  19. @end