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.
23 lines
580 B
Objective-C
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
|