2012-07-22 14:23:50 -07:00
|
|
|
//
|
|
|
|
// FTUXAddNewsBlurViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 7/22/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
#import "NewsBlurAppDelegate.h"
|
|
|
|
|
|
|
|
@interface FirstTimeUserAddNewsBlurViewController : UIViewController <ASIHTTPRequestDelegate> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
|
2012-08-15 15:38:21 -07:00
|
|
|
@property (strong, nonatomic) IBOutlet UILabel *instructionsLabel;
|
2012-07-22 14:23:50 -07:00
|
|
|
|
|
|
|
- (IBAction)tapNextButton;
|
|
|
|
- (IBAction)tapNewsBlurButton:(id)sender;
|
2012-08-12 20:09:45 -07:00
|
|
|
- (IBAction)tapPopularButton:(id)sender;
|
2012-07-22 14:23:50 -07:00
|
|
|
|
2012-08-12 18:50:32 -07:00
|
|
|
- (void)finishAddSite:(ASIHTTPRequest *)request;
|
2012-07-22 14:23:50 -07:00
|
|
|
- (void)requestFailed:(ASIHTTPRequest *)request;
|
|
|
|
- (void)addSite:(NSString *)siteUrl;
|
2012-08-12 20:09:45 -07:00
|
|
|
- (void)addPopular;
|
2012-07-22 14:23:50 -07:00
|
|
|
@end
|