mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00

- Moved globally-relevant methods to BaseViewController, so their menu items are always available. - Big refactor to eliminate redundant appDelegate properties. - Work in progress on reimplementing the navigation bars as a Mac toolbar.
26 lines
547 B
Objective-C
26 lines
547 B
Objective-C
//
|
|
// PremiumViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 11/9/17.
|
|
// Copyright © 2017 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "NewsBlurAppDelegate.h"
|
|
#import "NewsBlur-Swift.h"
|
|
|
|
@class SAConfettiView;
|
|
|
|
@interface PremiumViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource>
|
|
|
|
@property (nonatomic) IBOutlet UITableView *premiumTable;
|
|
|
|
|
|
- (IBAction)closeDialog:(id)sender;
|
|
- (IBAction)restorePurchase:(id)sender;
|
|
|
|
- (void)loadedProducts;
|
|
- (void)finishedTransaction;
|
|
|
|
@end
|