NewsBlur/clients/ios/Classes/PremiumViewController.h
David Sinclair c94e517a88 #1247 (Mac Catalyst edition)
- 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.
2024-01-05 22:02:43 -05:00

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