NewsBlur/media/ios/Classes/FirstTimeUserViewController.h
2012-07-22 14:23:50 -07:00

25 lines
563 B
Objective-C

//
// 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;
@interface FirstTimeUserViewController : UIViewController {
NewsBlurAppDelegate *appDelegate;
}
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
@property (nonatomic) IBOutlet UIImageView *logo;
- (IBAction)tapNextButton;
- (void)rotateLogo;
@end