mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
23 lines
537 B
Objective-C
23 lines
537 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "ASIHTTPRequest.h"
|
|
#import "ASIFormDataRequest.h"
|
|
#import "MBProgressHUD.h"
|
|
|
|
@interface BaseViewController : UIViewController {
|
|
|
|
NSMutableArray* requests;
|
|
|
|
}
|
|
|
|
- (ASIHTTPRequest*) requestWithURL:(NSString*) s;
|
|
- (ASIFormDataRequest*) formRequestWithURL:(NSString*) s;
|
|
- (void) addRequest:(ASIHTTPRequest*)request;
|
|
- (void) clearFinishedRequests;
|
|
- (void) cancelRequests;
|
|
|
|
- (void)informError:(id)error;
|
|
- (void)informMessage:(NSString *)message;
|
|
- (void)informLoadingMessage:(NSString *)message;
|
|
|
|
@end
|
|
|