引用:http://stackoverflow.com/questions/29528293/nsmutableurlrequest-body-malformed-after-ios-8-3-update
IOS8.3开始 NSMutableURLRequest需要手动设置Content-Type,否则导致服务器接受参数失败的错误,请添加如下代码:
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
IOS8.3 NSMutableURLRequest需手动设置Content-Type
原文地址:http://blog.csdn.net/ytlvy/article/details/45022367