我有一个应用程序,我在viewControllers和NSUserDefaults之间传递一些数据。
这是我正在使用的代码。
[[NSUserDefaults standardUserDefaults]setObject:selectedLists forKey:UserID];
选定列表 NSMutableArray ,UserID NSString 。
此代码在ios7和xCode5之前正常工作。
由于我已经更新了xCode6,现在我正在使用ios8,我的应用程序可以正常使用xCode 6和ios 7.1,但是当我在ios8设备中运行应用程序并且错误如下时应用程序崩溃。
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFNumber length]: unrecognized selector sent to instance 0x7a027060'
我只是不明白这里有什么问题。
如果有人遇到过ios8的这个问题,请帮助我。
提前致谢。
选定列表的值
{
CardFace = Word;
ImportFlag = Import;
ListID = 1;
ListName = "Adjectives - Appearance";
QuizBy = Definition;
UserID = 1;
}
和UserId为1。
EDITED
*** First throw call stack:
(
0 CoreFoundation 0x06a24df6 __exceptionPreprocess + 182
1 libobjc.A.dylib 0x03ac8a97 objc_exception_throw + 44
2 CoreFoundation 0x06a2ca75 -[NSObject(NSObject) doesNotRecognizeSelector:] + 277
3 CoreFoundation 0x069759c7 ___forwarding___ + 1047
4 CoreFoundation 0x0697558e _CF_forwarding_prep_0 + 14
5 CoreFoundation 0x068df30f CFStringGetLength + 143
6 CoreFoundation 0x069de510 _CFPrefsEncodeKeyValuePairIntoMessage + 64
7 CoreFoundation 0x06a275cf -[CFPrefsPlistSource sendMessageSettingValue:forKey:] + 111
8 CoreFoundation 0x06954f3a -[CFPrefsPlistSource alreadylocked_setValue:forKey:] + 250
9 CoreFoundation 0x06954e22 -[CFPrefsSource setValue:forKey:] + 82
10 CoreFoundation 0x06954dc3 ___CFPreferencesSetValueWithContainer_block_invoke + 51
11 CoreFoundation 0x0690ef0a +[CFPrefsSource withSourceForIdentifier:user:byHost:container:perform:] + 1274
12 CoreFoundation 0x06954d61 _CFPreferencesSetValueWithContainer + 225
13 CoreFoundation 0x06a0aa62 _CFPreferencesSetAppValueWithContainer + 66
14 Foundation 0x0347f53f -[NSUserDefaults(NSUserDefaults) setObject:forKey:] + 59
15 Foundation 0x0353eeba -[NSUserDefaults(NSKeyValueCoding) setValue:forKey:] + 68
16 Vocab 0x000eaecc Vocab + 720588
17 libobjc.A.dylib 0x03ade7cd -[NSObject performSelector:withObject:withObject:] + 84
18 UIKit 0x022a079d -[UIApplication sendAction:to:from:forEvent:] + 99
19 UIKit 0x022a072f -[UIApplication sendAction:toTarget:fromSender:forEvent:] + 64
20 UIKit 0x023d3a16 -[UIControl sendAction:to:forEvent:] + 69
21 UIKit 0x023d3e33 -[UIControl _sendActionsForEvents:withEvent:] + 598
22 UIKit 0x023d309d -[UIControl touchesEnded:withEvent:] + 660
23 UIKit 0x022f0aba -[UIWindow _sendTouchesForEvent:] + 874
24 UIKit 0x022f1595 -[UIWindow sendEvent:] + 791
25 UIKit 0x022b6aa9 -[UIApplication sendEvent:] + 242
26 UIKit 0x022c68de _UIApplicationHandleEventFromQueueEvent + 20690
27 UIKit 0x0229b079 _UIApplicationHandleEventQueue + 2206
28 CoreFoundation 0x069487bf __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
29 CoreFoundation 0x0693e2cd __CFRunLoopDoSources0 + 253
30 CoreFoundation 0x0693d828 __CFRunLoopRun + 952
31 CoreFoundation 0x0693d1ab CFRunLoopRunSpecific + 443
32 CoreFoundation 0x0693cfdb CFRunLoopRunInMode + 123
33 GraphicsServices 0x0436424f GSEventRunModal + 192
34 GraphicsServices 0x0436408c GSEventRun + 104
35 UIKit 0x0229ee16 UIApplicationMain + 1526
36 Vocab 0x0004c9bc Vocab + 72124
37 libdyld.dylib 0x03ee6ac9 start + 1
)
libc++abi.dylib: terminating with uncaught exception of type NSException
被修改 在我的tableview的didselect方法...
UserID = [[users objectAtIndex:indexPath.row] valueForKey:@"UserID"];
用户是一个数组。
答案 0 :(得分:1)
您应该检查 UserID 类型,因为崩溃与将NSArray
更改为NSMutableArray
无关。
您必须在您的userID上将NSNumber与NSString混淆:
更改代码而不是userID使用变量userIDString
NSString userIDString;
//If UserID is class of NSNumber turn its value to NSString
if ([UserID isKindOfClass:[NSNumber class]])
{
userIDString = [UserID stringValue];
}
else
userIDString = UserID ;
答案 1 :(得分:1)
在运行时UserId
可能属于NSNumber
类型,即使在您的代码中输入的内容为NSString
。
检查UserId
的创建方式。使用调试器检查运行时类型。
新发布的代码显示您从UserId
数组中检索users
,该数组可能包含词典。在这些词典中,键UserID
的值是。这取决于如何创建字典数组(json反序列化?)但似乎UserID
键引用的对象类型是数字类型,而不是字符串。所以你要做的就是将这个数字转换成一个字符串:
UserID = [[[users objectAtIndex:indexPath.row] valueForKey:@"UserID"] stringValue];
现在你的密钥总是一个字符串。
答案 2 :(得分:0)
我认为自iOS8以来NSMutableArrays
无法存储NSUserDefaults
(根据不同的帖子)。尝试将其转换为数组(或创建一个新数组)。
就像这样:
NSArray *arr = [NSArray arrayWithArray:selectedLists];
将arr
存储在NSUserDefaults
。
答案 3 :(得分:0)
答案 4 :(得分:0)
不应使用NSUSerdefault来保留自定义对象的集合。 您应该使用NSkeyedUnarchiver / NSkeyedarchiver保存它们。 参考:NSCoding。