mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
21 lines
450 B
C
21 lines
450 B
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:(NSError *)error;
|
||
|
|
||
|
@end
|