NewsBlur/clients/ios/Classes/FontListViewController.h
David Sinclair 535a66615b iOS: added #791 (separate fonts list)
Sorry for the delay getting to this.  I've implemented the separate
list of fonts, listing the sample one you provided.  Once you get the
others, they can be added to the fonts folder in the resources, and
listed in the -[FontSettingsViewController viewWillAppear:] method (I
can do that if you like).
2015-10-31 16:35:32 -07:00

17 lines
336 B
Objective-C

//
// FontListViewController.h
// NewsBlur
//
// Created by David Sinclair on 2015-10-30.
// Copyright © 2015 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface FontListViewController : UIViewController
@property (weak) IBOutlet UITableView *fontTableView;
@property (nonatomic, strong) NSArray *fonts;
@end