NewsBlur/clients/ios/Classes/FirstTimeUserAddNewsBlurViewController.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

23 lines
580 B
Objective-C

//
// FTUXAddNewsBlurViewController.h
// NewsBlur
//
// Created by Roy Yang on 7/22/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
@interface FirstTimeUserAddNewsBlurViewController : BaseViewController
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
@property (strong, nonatomic) IBOutlet UILabel *instructionsLabel;
- (IBAction)tapNextButton;
- (IBAction)tapNewsBlurButton:(id)sender;
- (IBAction)tapPopularButton:(id)sender;
- (void)addSite:(NSString *)siteUrl;
- (void)addPopular;
@end