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-07-22 14:23:50 -07:00
|
|
|
@interface FirstTimeUserViewController : UIViewController {
|
2012-06-15 10:49:51 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
2012-06-13 18:07:24 -07:00
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2012-07-22 14:23:50 -07:00
|
|
|
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
|
|
|
|
@property (nonatomic) IBOutlet UIImageView *logo;
|
2012-08-11 18:03:28 -07:00
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *header;
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *footer;
|
2012-06-15 10:49:51 -07:00
|
|
|
|
2012-06-15 15:02:30 -07:00
|
|
|
- (IBAction)tapNextButton;
|
2012-06-20 07:39:49 -07:00
|
|
|
- (void)rotateLogo;
|
2012-08-12 18:07:54 -07:00
|
|
|
-(void)handleTimer:(NSTimer *)timer;
|
2012-06-15 15:02:30 -07:00
|
|
|
|
2012-06-13 18:07:24 -07:00
|
|
|
@end
|