Do a simple json POST using RESTKit
问题 I'm new to iOS development and I'm having trouble making a simple Json POST request. I have a NSDictionary containing an user and password and I want to send those values as a Json to a server and get a response. I had that working without using restkit but I can't figure out how to accomplish the same using RestKit and just can't find a good example of what I want. - (bool) login{ NSMutableDictionary* params = [[NSMutableDictionary alloc] init]; [params setValue:self.email forKey:@"email"];