// // ZSSFontsViewController.h // ZSSRichTextEditor // // Created by Will Swan on 03/09/2016. // Copyright © 2016 Zed Said Studio. All rights reserved. // #import typedef NS_ENUM(int16_t, ZSSFontFamily) { ZSSFontFamilyDefault = 0, ZSSFontFamilyTrebuchet = 1, ZSSFontFamilyVerdana = 2, ZSSFontFamilyGeorgia = 3, ZSSFontFamilyPalatino = 4, ZSSFontFamilyTimesNew = 5, ZSSFontFamilyCourierNew = 6, }; @protocol ZSSFontsViewControllerDelegate - (void)setSelectedFontFamily:(ZSSFontFamily)fontFamily; @end @interface ZSSFontsViewController : UIViewController { id __weak delegate; ZSSFontFamily _font; } + (ZSSFontsViewController *)cancelableFontPickerViewControllerWithFontFamily:(ZSSFontFamily)fontFamily; - (id)initWithFontFamily:(ZSSFontFamily)fontFamily; @property (weak) id delegate; @end