mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
28 lines
742 B
C
28 lines
742 B
C
![]() |
//
|
||
|
// FTUXaddSitesViewController.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 FirstTimeUserAddSitesViewController : UIViewController <ASIHTTPRequestDelegate> {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic) NSMutableArray *categories;
|
||
|
@property (nonatomic) IBOutlet UIButton *googleReaderButton;
|
||
|
@property (nonatomic) IBOutlet UIBarButtonItem *nextButton;
|
||
|
|
||
|
- (IBAction)tapNextButton;
|
||
|
- (IBAction)tapGoogleReaderButton;
|
||
|
- (IBAction)tapCategoryButton:(id)sender;
|
||
|
|
||
|
- (void)addCategories;
|
||
|
- (void)selectGoogleReaderButton;
|
||
|
|
||
|
@end
|