2012-07-22 14:23:50 -07:00
|
|
|
//
|
|
|
|
// FTUXaddSitesViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/22/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "NewsBlurAppDelegate.h"
|
|
|
|
|
2017-03-19 18:15:36 -07:00
|
|
|
@interface FirstTimeUserAddSitesViewController : BaseViewController
|
|
|
|
<UITableViewDataSource, UITableViewDelegate> {
|
2012-07-22 14:23:50 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet UIButton *googleReaderButton;
|
2012-08-12 20:09:45 -07:00
|
|
|
@property (nonatomic) IBOutlet UIView *googleReaderButtonWrapper;
|
2012-07-22 14:23:50 -07:00
|
|
|
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
|
2012-08-11 15:16:35 -07:00
|
|
|
@property (nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
|
|
|
|
@property (nonatomic) IBOutlet UILabel *instructionLabel;
|
2012-08-14 17:20:45 -07:00
|
|
|
@property (nonatomic) IBOutlet UITableView *categoriesTable;
|
2012-07-22 14:23:50 -07:00
|
|
|
|
|
|
|
- (IBAction)tapNextButton;
|
2012-08-15 13:04:05 -07:00
|
|
|
- (void)tapGoogleReaderButton;
|
2012-08-14 17:20:45 -07:00
|
|
|
|
|
|
|
- (void)addCategory:(id)sender;
|
2012-08-11 15:16:35 -07:00
|
|
|
- (void)updateSites;
|
2012-08-14 17:20:45 -07:00
|
|
|
|
|
|
|
- (CGFloat)tableViewHeight;
|
2017-03-10 09:16:03 -08:00
|
|
|
@end
|