// // FTUXaddSitesViewController.h // NewsBlur // // Created by Roy Yang on 7/22/12. // Copyright (c) 2012 NewsBlur. All rights reserved. // #import #import "NewsBlurAppDelegate.h" @interface FirstTimeUserAddSitesViewController : BaseViewController { NewsBlurAppDelegate *appDelegate; } @property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate; @property (nonatomic) IBOutlet UIButton *googleReaderButton; @property (nonatomic) IBOutlet UIView *googleReaderButtonWrapper; @property (nonatomic) IBOutlet UIBarButtonItem *nextButton; @property (nonatomic) IBOutlet UIActivityIndicatorView *activityIndicator; @property (nonatomic) IBOutlet UILabel *instructionLabel; @property (nonatomic) IBOutlet UITableView *categoriesTable; - (IBAction)tapNextButton; - (void)tapGoogleReaderButton; - (void)addCategory:(id)sender; - (void)updateSites; - (CGFloat)tableViewHeight; @end