// // PDFKTFontNameView.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 @protocol PDFKTfontNamesDelegate; @interface PDFKTFontNameView : UIView @property (nonatomic, assign) id fontNamedelegate; @property (nonatomic, retain) NSArray *fontNames; @property (nonatomic, retain) NSString *fontName; @end @protocol PDFKTfontNamesDelegate - (void)fontNamesView:(PDFKTFontNameView*)fontNamesView didSelectedTextFontName:(NSString *)fontName; @end