解析通知 userInfo 时 NSString IntValue 异常
NSString IntValue exception when parsing notification userInfo
我正在实现一个登录系统,该系统使用 NSNotifications
userInfo
字典通过通知传递登录信息。字典顺利通过,但是当我尝试使用 IntValue 将字典中的 NSStrings
之一转换为 int 时,出现错误。即使当我将字典对象复制到另一个字符串时,我也会遇到同样的错误,但对于普通字符串则没有错误。代码:
- (void)loginComplete:(NSNotification *) notification {
if ([[notification name] isEqualToString:@"Login Complete"]) {
NSDictionary *loginInfo = [notification userInfo];
loginString = [loginInfo objectForKey:@"login_string"];
NSLog(@"%@", loginString);
NSString* expString = [NSString stringWithString:[loginInfo objectForKey:@"expires_in"]];
// [loginInfo objectForKey:@"expires_in"] == @"604700"
expiresIn = [expString intValue];
NSLog(@"expiresIn: %i", expiresIn);
NSString * toInt = @"112345";
int realInt = [toInt intValue];
NSLog(@"realInt: %i", realInt);
}
}
所以第一个 NSLog
提供了正确的信息,最后的转换(测试)也有效,但是 expiresIn 导致错误:
2015-01-13 17:53:06.976 API_test_osx[2867:143430] -[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
2015-01-13 17:53:06.976 API_test_osx[2867:143430] *** WebKit discarded an uncaught exception in the webView:didFinishLoadForFrame: delegate: <NSInvalidArgumentException> -[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
如果我尝试不转换为 int,则可以将值记录为 NSString
。我做错了什么?
您认为是 NSString
的对象实际上是 NSArray
,如错误消息所示:
-[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
我无法提供更多信息,除此之外,如果您在 Objective-C 集合 class 中传递整数,则使用 NSNumber
对象,而不是 NSString
对象。
您似乎正在访问指定键下的对象数组。您还需要访问对象索引值。即 objectAtIndex。希望这有帮助
我正在实现一个登录系统,该系统使用 NSNotifications
userInfo
字典通过通知传递登录信息。字典顺利通过,但是当我尝试使用 IntValue 将字典中的 NSStrings
之一转换为 int 时,出现错误。即使当我将字典对象复制到另一个字符串时,我也会遇到同样的错误,但对于普通字符串则没有错误。代码:
- (void)loginComplete:(NSNotification *) notification {
if ([[notification name] isEqualToString:@"Login Complete"]) {
NSDictionary *loginInfo = [notification userInfo];
loginString = [loginInfo objectForKey:@"login_string"];
NSLog(@"%@", loginString);
NSString* expString = [NSString stringWithString:[loginInfo objectForKey:@"expires_in"]];
// [loginInfo objectForKey:@"expires_in"] == @"604700"
expiresIn = [expString intValue];
NSLog(@"expiresIn: %i", expiresIn);
NSString * toInt = @"112345";
int realInt = [toInt intValue];
NSLog(@"realInt: %i", realInt);
}
}
所以第一个 NSLog
提供了正确的信息,最后的转换(测试)也有效,但是 expiresIn 导致错误:
2015-01-13 17:53:06.976 API_test_osx[2867:143430] -[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
2015-01-13 17:53:06.976 API_test_osx[2867:143430] *** WebKit discarded an uncaught exception in the webView:didFinishLoadForFrame: delegate: <NSInvalidArgumentException> -[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
如果我尝试不转换为 int,则可以将值记录为 NSString
。我做错了什么?
您认为是 NSString
的对象实际上是 NSArray
,如错误消息所示:
-[__NSArrayM length]: unrecognized selector sent to instance 0x600000441d40
我无法提供更多信息,除此之外,如果您在 Objective-C 集合 class 中传递整数,则使用 NSNumber
对象,而不是 NSString
对象。
您似乎正在访问指定键下的对象数组。您还需要访问对象索引值。即 objectAtIndex。希望这有帮助