mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

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).
22 lines
602 B
Objective-C
22 lines
602 B
Objective-C
//
|
|
// FontPopover.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 6/18/12.
|
|
// Copyright (c) 2012-2015 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface FontSettingsViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UISegmentedControl *fontSizeSegment;
|
|
@property (nonatomic) IBOutlet UISegmentedControl *lineSpacingSegment;
|
|
@property (nonatomic) IBOutlet UITableView *menuTableView;
|
|
|
|
- (IBAction)changeFontSize:(id)sender;
|
|
|
|
@end
|