PTFontPickerViewController
@interface PTFontPickerViewController : UITableViewController
@property (nonatomic, weak) id<PTFontPickerViewControllerDelegate> delegate;
@property (nullable, strong, nonatomic) UIFont *selectedFont;
- (instancetype)initWithFonts:(NSArray<UIFont *> *)fonts;
@end
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, weak) id<PTFontPickerViewControllerDelegate> delegate
Swift
weak var delegate: (any PTFontPickerViewControllerDelegate)? { get set }
-
Undocumented
Declaration
Objective-C
@property (nullable, strong, nonatomic) UIFont *selectedFont
Swift
var selectedFont: UIFont? { get set }
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithFonts:(NSArray<UIFont *> *)fonts;
Swift
init(fonts: [UIFont])