4

我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误

Expected content type {( "application/x-plist" )}, got application/xml"

我做了一些研究,application/xml 显然是在 iOS 中创建的类型。如何创建应用程序/x-plist 格式的 PLIST?我试过做plutil,但它似乎没有用。

谢谢!

4

1 回答 1

7

您可以使用以下方法将内容类型添加application/xml到:AFPropertyListRequestOperationaddAcceptableContentTypes

[AFPropertyListRequestOperation addAcceptableContentTypes:[NSSet setWithObject:@"application/xml"];
于 2013-04-01T21:27:09.213 回答