私は解決策を得ました、私は次のリンクで与えられている次のライブラリを使用していることを使用して、gitハブからAFNetworkingライブラリを使用しています
https://github.com/lognllc/LogNMagento
いくつかの基本的なステップ
=> LogNMangento アプリケーションをアプリケーションにインポートします
=> magento.h で
- (void)settingLogin:(completionBlock) completionBlock;
=> magento.mで
- (void)settingLogin:(completionBlock)completionBlock
{
standardUserDefaults = [NSUserDefaults standardUserDefaults];
array =[standardUserDefaults objectForKey:@"Prefs"];
client = [[MagentoClient alloc] initWithBaseURL:[NSURL URLWithString:[array objectAtIndex:0]]];
[client setDefaultHeader:@"SOAPAction" value:@"urn:Mage_Api_Model_Server_HandlerAction"];
[client registerHTTPOperationClass:[SoapRequestOperation class]];
[SoapRequestOperation addAcceptableStatusCodes:[NSIndexSet indexSetWithIndexesInRange:NSMakeRange(200, 301)]];
[client setDefaultHeader:@"Content-Type" value:@"text/xml; charset=utf-8"];
[client postPath:@"login" parameters:@{@"username":[array objectAtIndex:1], @"apiKey": [array objectAtIndex:2] } success:^(AFHTTPRequestOperation *operation, id responseObject) {
sessionID = responseObject;
completionBlock(sessionID);
} failure:^(AFHTTPRequestOperation *operationData, NSError *error) {
NSLog(@"Response is not get");
sessionID = FAILED_SESSION;
completionBlock(sessionID);
}];
}
=>これをクラスで呼び出します
[Magento.service settingLogin:^(NSString *session) {
if(session){
NSLog(@"Session %@",session);
if(![session isEqualToString:@"NULL"])
{
[self.view hideToastActivity];
self.viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
[self.navigationController pushViewController:self.viewController animated:YES];
}
else
{
[self.view hideToastActivity];
[self.view makeToast:@"Please Check Store Info"];
session=nil;
}
}
else{
}
}];
}
else
{
[self.view makeToast:@"Please insert data"
duration:1.0
position:@"bottom"
];
}
はい、ベースURLのmagento.mのINITにも変更を加えます