I have recently suffered from a problem regarding TTURLRequest.
I have been using Three20 framework for several months and I know that there are two ways of sending requests using TTURLRequest.
Using url combined with parameters, such as
http://www.test.com/test?username=u&password=pUsing build-in
parameterproperty in NSMutableDictionary format and the parameters are set like this:TTURLRequest *request = [TTURLRequest requestWithURL:url delegate:self]; [request.parameter setObject:@"obj" forKey:@"o"];
The problem for now is that I need to send a request with JSON format.
Is it possible to convert the request.parameter to a JSON format? Or, should I implement a JSON format property for TTURLRequest to send the request?