我有两个数组存储在字典中:
array1=[[NSArray alloc]initWithObjects:a,b,c,d,e, nil];
array2=[[NSArray alloc]initWithObjects:1,2,3, nil];
NSDictionary * dic=[[NSDictionary alloc]initWithObjects:array1 forKeys:array2];
如果我运行我会收到错误消息:
-[NSDictionary initWithObjects:forKeys:]: count of objects (0) differs from count of keys (1)'
现在我只想为 a,b,c 设置字典,键为:1,2,3。
因为数组无法编辑
我怎样才能做到这一点