gpt4 book ai didi

ios - NSJSONSerialization 产生垃圾

转载 作者:行者123 更新时间:2023-11-28 19:40:13 25 4
gpt4 key购买 nike

我在使用 NSJSONSerialization 创建 NSStringNSDictionary 表示(JSON 字符串)时遇到了一些问题。我以前使用过 JSONKit,但由于它在 iOS9 中被弃用(并且崩溃),我切换到 NSJSONSerialization

这是我的代码:

// `userSettings` will be of type NSMutableDictionary*

NSData* data= [NSJSONSerialization dataWithJSONObject:userSettings options:0 error:&error];
NSString* settingsString= [NSString stringWithUTF8String:data.bytes];

currentUser.settings= settingsString; // NSString* property

现在,这段代码有时会起作用,但有时 settingsString 会是 nil。当我在调试器中检查数据对象时,bytes 属性显示 JSON-String 后跟一些随机垃圾,如下所示:

1 = 0x00007ff1ba814000 "{\"residua
...
lculatePlanned\":\"0\",\"wizardUserId\":\"\"}UITextColor\x91UISystemColorName\x94UIBaselineAdjustment\x8cUISystemFont\x89NS.intval\x8eUIShadowOffset\x94UIAutoresizeSubviews\x8dUIContentMode\x85NSRGB\x8aUIFontName\x8bUITextLabel\x8eNSInlinedValue\x91UIDetailTextLabel\x99UIUserInteractionDisabled\x9dUITableCellBackgroundColorSet\x94UINibEncoderEmptyKey\x87NSWhite\x8cNSColorSpace\x8fUITextAlignment\xa3UINibAccessibilityConfigurationsKey\x92UIAutoresizingMask\x99UIProxiedObjectIdentifier\x87UIAlpha\x87UIWhite\x9aUIFontDescriptorAttributes\x8cUIFontTraits\x86NSSize\x95UIColorComponentCount\x91UIMinimumFontSize\x86UIText\x96UIMultipleTouchEnabled\x8dUIDestination\x94UIMi..."
^ start of garbage after end of dictionary

我做错了什么?

最佳答案

不要使用 + stringWithUTF8String:,它依赖于一个以 NULL 结尾的 C 字节数组,并且偶然只有一个 NULL 终止符,它可能就在你的字符结束之后期待。

改为使用:

- (instancetype)initWithData:(NSData *)data encoding:(NSStringEncoding)encoding

例如:

NSString *settingsString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

关于ios - NSJSONSerialization 产生垃圾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34826683/

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