NewsBlur/clients/ios/Classes/PremiumViewController.h

28 lines
612 B
C
Raw Normal View History

//
// 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"
2017-11-10 17:57:50 -08:00
@class SAConfettiView;
2022-06-22 21:35:54 -06:00
@interface PremiumViewController : BaseViewController <UITableViewDelegate, UITableViewDataSource>
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
2022-06-22 21:35:54 -06:00
@property (nonatomic) IBOutlet UITableView *premiumTable;
- (IBAction)closeDialog:(id)sender;
- (IBAction)restorePurchase:(id)sender;
- (void)loadedProducts;
- (void)finishedTransaction;
@end