2012-06-13 18:07:24 -07:00
|
|
|
//
|
|
|
|
// FirstTimeUserViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 6/13/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2012-06-15 10:49:51 -07:00
|
|
|
#import "NewsBlurAppDelegate.h"
|
2012-06-13 18:07:24 -07:00
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2012-06-15 10:49:51 -07:00
|
|
|
@interface FirstTimeUserViewController : UIViewController {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
|
|
|
int currentStep;
|
|
|
|
}
|
2012-06-13 18:07:24 -07:00
|
|
|
|
2012-06-15 10:49:51 -07:00
|
|
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-06-14 10:19:36 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet UIButton *googleReaderButton;
|
2012-06-15 10:49:51 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet UIView *welcomeView;
|
|
|
|
@property (retain, nonatomic) IBOutlet UIView *addSitesView;
|
|
|
|
@property (retain, nonatomic) IBOutlet UIView *addFriendsView;
|
|
|
|
@property (retain, nonatomic) IBOutlet UIView *addNewsBlurView;
|
2012-06-15 13:32:39 -07:00
|
|
|
@property (retain, nonatomic) IBOutlet UIToolbar *toolbar;
|
|
|
|
@property (retain, nonatomic) IBOutlet UIButton *toolbarTitle;
|
2012-06-15 10:49:51 -07:00
|
|
|
|
|
|
|
- (IBAction)tapNextButton:(id)sender;
|
|
|
|
- (IBAction)tapGoogleReaderButton;
|
2012-06-15 13:32:39 -07:00
|
|
|
- (IBAction)tapCategoryButton:(id)sender;
|
2012-06-14 10:19:36 -07:00
|
|
|
|
2012-06-13 18:07:24 -07:00
|
|
|
@end
|