サーバー側の要求と応答を使用するために ASIFormDataRequest フレームワークを使用しています。ビューコントローラークラスごとにリクエストメソッドとレスポンスメソッドを使用したくありません。サービス処理機能に別のシングルトンクラスを使用したい場合、そのクラスはサービスの成功と失敗を適切に起動します。このアイデアを iOS プロジェクトに実装しました。
しかし、一度に複数のリクエストが行われると、リクエストしたものに対して適切な応答が得られません。service handle
次のコードを確認してください。このコードでは、クラスでカスタム デリゲートを使用しています。一度に複数のリクエストが行われる場合、このカスタム デリゲート メソッドが変更される可能性があると思います。
注: 異なるビュー コントローラーからの一度に複数の要求。
ServiceHandle.h
@protocol serviceDelegate <NSObject>
-(void)successFullResponse:(ASIHTTPRequest *)req;
-(void)failedResponse:(ASIHTTPRequest *)req;
@end
@interface ServiceHandle : NSObject
@property(nonatomic,strong)NSOperationQueue *queue;
@property (nonatomic,weak)id<serviceDelegate>delegate;
+ (id)sharedInstance;
-(void)loginWithUserName:(NSString *)userName;
-(void)userReg:(NSDictionary*)userDict;
@end
ServiceHandle.m
static ServiceHandle *sharedInstance = nil;
@implementation ServiceHandle
@synthesize delegate,queue;
+(ServiceHandle *)sharedInstance{
if (sharedInstance == nil) {
sharedInstance = [[super allocWithZone:NULL]init];
}
return sharedInstance;
}
- (id)init
{
self = [super init];
if (self) {
// Work your initialising magic here as you normally would
}
return self;
}
-(void)loginWithUserName:(NSString *)userName{
if (![self queue]) {
[self setQueue:[[NSOperationQueue alloc] init]];
}
NSString *path=[NSString stringWithFormat:@"%@userLogin",webserviceURL];
NSString *lattitude=[[NSUserDefaults standardUserDefaults] objectForKey:@"mylatitude"];
NSString *longitude=[[NSUserDefaults standardUserDefaults] objectForKey:@"mylongitude"];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:path]];
[request setTimeOutSeconds:30];
[request setPostValue:userName forKey:@"userId"];
[request setPostValue:lattitude forKey:@"latitude"];
[request setPostValue:longitude forKey:@"longitude"];
[request setShouldContinueWhenAppEntersBackground:YES];
[request setDidFinishSelector:@selector(requestSuccess:)];
[request setDidFailSelector:@selector(requestFail:)];
request.queuePriority = NSOperationQueuePriorityHigh;
request.delegate = self;
[[self queue]addOperation:request];
}
-(void)requestSuccess:(ASIHTTPRequest *)request{
if ([self.delegate respondsToSelector:@selector(successFullResponse:)]) {
[self.delegate successFullResponse:request];
}
}
-(void)requestFail:(ASIHTTPRequest *)request{
if ([self.delegate respondsToSelector:@selector(failedResponse:)]) {
[self.delegate failedResponse:request];
}
}
ViewController.m
-(IBAction)clickLogin:(id)sender{
ServiceHandle *sharedObj = [ServiceHandle sharedInstance];
sharedObj.delegate = self;
[sharedObj loginWithUserName:@“usrName”];
}
-(void)successFullResponse:(ASIHTTPRequest *)req{
NSString *responseString = [req responseString];
NSLog(@"responseString is%@",responseString);
NSDictionary *responseDict = [responseString JSONValue];
NSLog(@"dict is :%@",responseDict);
}
-(void)failedResponse:(ASIHTTPRequest *)req{
}