How can I print the contents of an NSData object using NSLog:
-(void) post:(NSString*) msg to:(NSString*) link{ NSString *myRequestString = [NSString str
One thing you must consider too:
NSLog(@"%@", *returnData); // this is wrong. NSLog(@"%@", returnData); // this is correct.
I hope I could help!