NSMutableData *body = [NSMutableData data];
[body appendData:[self addFormData:@"username" withString:@"tom"]];
NSLog(@"-----the body is %@----", body);
But the NSLog shows <0d345621 67543687 d123ab023 ........etc>
I thought it should shows "username"="tom" all those hex stuffs i mean no one will able to understand it.
Convert to a string for use/display, example:
Do consider the encoding that is correct for this data--if it is a character string at all.