mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
18 lines
587 B
Objective-C
Executable file
18 lines
587 B
Objective-C
Executable file
//
|
|
// BBNetworkRequest.h
|
|
//
|
|
// Created by Boris Buegling on 05.08.12.
|
|
// Copyright (c) 2012 Boris Buegling. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface BBNetworkRequest : NSMutableURLRequest
|
|
|
|
+(id)requestWithURLString:(NSString*)urlString;
|
|
+(id)requestWithURLString:(NSString *)urlString parameters:(NSDictionary*)parameters;
|
|
|
|
-(void)sendAsynchronousRequestWithCompletionHandler:(void (^)(NSHTTPURLResponse*, NSData*))completionHandler
|
|
errorHandler:(void (^)(NSHTTPURLResponse*, NSData*, NSError*))errorHandler;
|
|
|
|
@end
|