NSMutableURLRequest setValue:forHTTPHeaderField xcode 6.2 不适用于 "application/json; charset=utf-8"

NSMutableURLRequest setValue:forHTTPHeaderField xcode 6.2 not working for "application/json; charset=utf-8"

我正在 Xcode 6.2 中使用 Alamofire 开发和应用程序,默认情况下 Alamofire 具有 .JSON 编码:

mutableURLRequest.setValue("application/json", forHTTPHeaderField: "Content-Type")

但是,我需要这样的值:

mutableURLRequest.setValue("application/json; charset=utf-8", forHTTPHeaderField: "Content-Type")

问题是在这一行之后,如果我打印 allHTTPHeaderFields,我有:

(lldb) po mutableURLRequest.allHTTPHeaderFields!.description
"[Content-Type: application/json]"

注意:这仅发生在 Xcode 6.2 中。它在 Xcode 6.1.1

中运行完美

有人可以帮忙吗?提前致谢。

原来是一些愚蠢的事情:我不得不在更改后重新编译 Alamofire 项目。现在工作。