-1

私は客観的なcでこれに相当するものが必要です

list($var1,$var2) = explode("=",$array);

私は試した

NSArray *stringArray = [postString componentsSeparatedByString:@"&"];
for (NSString* str in stringArray) {
     NSArray *keyvalue = [str componentsSeparatedByString:@"="];
     [postParam setValue:[keyvalue objectAtIndex:1] forKey:[keyvalue objectAtIndex:0]];
     [postData addObject:postParam];
}

しかし、私のアプリはメッセージでクラッシュします

<__NSDictionaryI 0x727abc0> setValue:forUndefinedKey:]: このクラスは、キー XY のキー値コーディングに準拠していません

助言がありますか?

4

1 に答える 1

0
[postParam setValue:[keyvalue objectAtIndex:1] forKey:[NSString stringWithFormat:@"%@",[keyvalue objectAtIndex:0]]];
于 2012-12-14T08:42:51.953 に答える