mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
29 lines
No EOL
809 B
Objective-C
29 lines
No EOL
809 B
Objective-C
//
|
|
// 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;
|
|
@property (strong, nonatomic) IBOutlet UIButton *instructionsLabel;
|
|
|
|
- (IBAction)tapNextButton;
|
|
- (IBAction)tapNewsBlurButton:(id)sender;
|
|
- (IBAction)tapPopularButton:(id)sender;
|
|
|
|
- (void)finishAddSite:(ASIHTTPRequest *)request;
|
|
- (void)requestFailed:(ASIHTTPRequest *)request;
|
|
- (void)addSite:(NSString *)siteUrl;
|
|
- (void)addPopular;
|
|
@end |