mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
31 lines
800 B
C
31 lines
800 B
C
![]() |
//
|
||
|
// FeedsMenuViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Roy Yang on 6/19/12.
|
||
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
#import "ASIHTTPRequest.h"
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface FeedsMenuViewController : UIViewController
|
||
|
<ASIHTTPRequestDelegate,
|
||
|
UITableViewDelegate,
|
||
|
UITableViewDataSource,
|
||
|
UIAlertViewDelegate> {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic, strong) NSArray *menuOptions;
|
||
|
|
||
|
- (IBAction)tapCancelButton:(UIBarButtonItem *)sender;
|
||
|
|
||
|
- (void)finishedWithError:(ASIHTTPRequest *)request;
|
||
|
|
||
|
@end
|