抱歉,如果这是一个重复的问题,但我似乎无法理解逻辑。
作为学习经验,我正在使用 Web 服务来填充 uitableview。基本上,我的 Web 服务返回一个数组数组,我希望将其传递给我的 UItableviewcontroller。我在一个单独的班级中有我的网络服务,我不确定如何传递数组。
这里的最佳实践通常是什么?
这是我的 WebService.m 文件:
#import "WebService.h"
#import "VaskerierTableViewController.h"
@implementation WebService
// Search the Laundrettes
-(void) searchLandrettes: (NSString*) SS {
//create the service
SDZDevices2Api* service = [SDZDevices2Api service];
service.logging = YES;
// Returns NSMutableArray*.
[service LocationFindSimple:self action:@selector(LocationFindSimpleHandler:) SearchString: SS Max: 25 BankId: [NSMutableArray array] BankName: [NSMutableArray array] Id: [NSMutableArray array] Name: [NSMutableArray array] Icon: [NSMutableArray array] Zip: [NSMutableArray array] Attributes: [NSMutableArray array]];
}
// Handle the response from LocationFindSimple.
- (void) LocationFindSimpleHandler: (id) value {
// Handle errors
if([value isKindOfClass:[NSError class]]) {
NSLog(@"%@", value);
return;
}
// Handle faults
if([value isKindOfClass:[SoapFault class]]) {
NSLog(@"%@", value);
return;
}
// Do something with the NSString* result
NSArray* result = (NSArray*)value;
NSLog(@"LocationFindSimple returned the string-value: %@", result);
// Antal arrays i alt
int arrayCount = [value count];
NSLog(@"ArrayCont = %i", arrayCount);
/*
* Første array indeholder kun taksten "OK"
* De efterfølgende synes at indeholde 6 elementer
* Derfor opretter jeg 6 array, til det indhold, som jeg synes at kunne finde
*/
if (arrayCount > 1) {
// Blot til test
NSLog(@"test = %@", [value objectAtIndex:1]);
// Et array til hver type information, for hvert resultat
NSArray *bankId = [[NSArray alloc] initWithArray:[value objectAtIndex:1]];
NSArray *bankName = [[NSArray alloc] initWithArray:[value objectAtIndex:2]];
NSArray *iId = [[NSArray alloc] initWithArray:[value objectAtIndex:3]];
NSArray *name = [[NSArray alloc] initWithArray:[value objectAtIndex:4]];
NSArray *icon = [[NSArray alloc] initWithArray:[value objectAtIndex:5]];
NSArray *zip = [[NSArray alloc] initWithArray:[value objectAtIndex:6]];
NSArray *attributes = [[NSArray alloc] initWithArray:[value objectAtIndex:7]];
}
}
@end