gpt4 book ai didi

objective-c - 通用 SBJason 解析器反射(reflect) Xcode 4.5 上的错误

转载 作者:行者123 更新时间:2023-11-29 13:26:36 25 4
gpt4 key购买 nike

我正在使用 SBJason 解析器将数据从我的服务器提取到我的应用程序中,但在升级到 Xcode 4.5 后出现了这个新错误。

在这条线上:

- (void)maxDepthError {
self.error = [NSString stringWithFormat:@"Input depth exceeds max depth of %lu", maxDepth]; //This is where the error lies
self.state = [SBJsonStreamParserStateError sharedInstance];
}

错误:

Format specifies type 'unsigned long' but the argument has type 'NSUInteger'(aka 'unsigned int')

非常感谢任何指点。

最佳答案

修复错误更改格式说明符以更正无符号整数的值 (%u)

self.error = [NSString stringWithFormat:@"Input depth exceeds max depth of %u", maxDepth];

关于objective-c - 通用 SBJason 解析器反射(reflect) Xcode 4.5 上的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12977109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com