mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
28 lines
708 B
Objective-C
28 lines
708 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;
|
|
@property (weak, nonatomic) IBOutlet UILabel *header;
|
|
@property (weak, nonatomic) IBOutlet UILabel *footer;
|
|
|
|
- (IBAction)tapNextButton;
|
|
- (void)rotateLogo;
|
|
-(void)handleTimer:(NSTimer *)timer;
|
|
|
|
@end
|