NewsBlur/clients/ios/Classes/FirstTimeUserAddSitesViewController.h

34 lines
1.1 KiB
C
Raw Normal View History

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"
@interface FirstTimeUserAddSitesViewController : UIViewController <ASIHTTPRequestDelegate, 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;
@property (nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator;
@property (nonatomic) IBOutlet UILabel *instructionLabel;
@property (nonatomic) IBOutlet UITableView *categoriesTable;
@property (strong, nonatomic) IBOutlet UIScrollView *scrollView;
2012-07-22 14:23:50 -07:00
- (IBAction)tapNextButton;
2012-08-15 13:04:05 -07:00
- (void)tapGoogleReaderButton;
- (void)addCategory:(id)sender;
- (void)importFromGoogleReader;
- (void)importFromGoogleReaderFailed:(NSString *)error;
- (void)updateSites;
- (CGFloat)tableViewHeight;
2012-07-22 14:23:50 -07:00
@end