我在项目中遇到了这个警告。欢迎提出建议..谢谢:)。
这是我的代码:
NSString *profile = @"Profile";
NSData *data = [profile dataUsingEncoding:NSUTF8StringEncoding];
NSString *error;
NSPropertyListFormat format;
NSDictionary *dict = [NSPropertyListSerialization propertyListWithData:data options:NSPropertyListImmutable format:&format error:&error];
答案 0 :(得分:1)
查看propertyListWithData:options:format:error:
的文档。请注意error
参数的数据类型。现在看看你如何声明你的error
变量。
该行:
NSString *error;
需要:
NSError *error;