配列データをサーバーに送信するために ASIHTTPRequest をフォーマットしています。キー (propertyKeys) の配列と情報 (propertyValues) の配列があり、ポストとキーの値をそのまま設定するループを作成しました。
for(int i = 0;i<13;i++){
[request setPostValue:[propertyValues objectAtIndex:i] forKey:[propertyKeys objectAtIndex:i]];
}
ただし、次のエラーが発生します。
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSURL objectAtIndex:]: unrecognized selector sent to instance 0x4e1d6d0'
AHIHTTPRequest のドキュメントを調べようとしましたが、サイトがダウンしているようです。