NSLog(@"1");
NSArray *obj= [NSArray arrayWithObjects:appDel.token, nil];
NSLog(@"2");
NSArray *key= [NSArray arrayWithObjects:@"Token", nil];
NSLog(@"3");
NSDictionary *d= [[NSDictionary alloc] initWithObjects:obj forKeys:key];
NSLog(@"4");
DoSomething();
NSLog(@"5");
需要有关上述代码的帮助。我似乎正在崩溃@"4"
(它不打印 4)。
来自 Xcode 的错误:
'Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: ' -[NSDictionary initWithObjects:forKeys:]: count of objects (0) differs from count of keys (1)'
任何善良的灵魂都可以为我指明正确的方向吗?在我升级到 Xcode 5 之前它可以正常工作 :(