在以下示例中调用 NSDictionary 时出现奇怪的异常:
NSInteger userId = 1;
NSDictionary *postData = [NSDictionary dictionaryWithObjectsAndKeys:
@"3", @"a",
@"0", @"b",
userId, @"c",
nil];
有人可以看到上面的问题是什么吗?