Question

 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.

Was it helpful?

Solution

Convert to a string for use/display, example:

NSString *str = [[NSString alloc] initWithData NSUTF8StringEncoding];
NSLog(@"str: %@", str);

Do consider the encoding that is correct for this data--if it is a character string at all.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top