NewsBlur/clients/ios/Classes/FirstTimeUserViewController.h

29 lines
708 B
C
Raw Normal View History

//
// FirstTimeUserViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/13/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
@class NewsBlurAppDelegate;
2012-07-22 14:23:50 -07:00
@interface FirstTimeUserViewController : UIViewController {
NewsBlurAppDelegate *appDelegate;
}
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;
- (IBAction)tapNextButton;
2012-06-20 07:39:49 -07:00
- (void)rotateLogo;
2012-08-12 18:07:54 -07:00
-(void)handleTimer:(NSTimer *)timer;
@end