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