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

- Removed confetti. - Fixed iPad layout. - Moved Manage Subscription to the bottom of the active subscription.
27 lines
612 B
Objective-C
27 lines
612 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 NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UITableView *premiumTable;
|
|
|
|
|
|
- (IBAction)closeDialog:(id)sender;
|
|
- (IBAction)restorePurchase:(id)sender;
|
|
|
|
- (void)loadedProducts;
|
|
- (void)finishedTransaction;
|
|
|
|
@end
|