I'm trying to send information to a server using ASIHTTPRequest and am setting the post values like this:
for(int i = 0;i<13;i++){
[request setPostValue:propertyValues[i] forKey:propertyKeys[i]]
}
propertyValues and propertyKeys are both NSArray objects that hold 13 items each. When I run this, I get the error "Subscript requires size of interface 'NSArray', which is not constant in non-stable ABI"
What does this mean?