我有这个数组,我想访问另一个数组中的第一个索引。
(
(
1021,
"String1,
"<null>",
"name1, name2",
P,
"String2",
"Link1",
"String3",
"String4"
),
(
1025,
"String1",
"<null>",
"name1, name2"
P,
"String2",
"Link1",
"String3",
"String4"
)
)
我尝试使用此代码进行 NSLog:
NSLog(@"ID: %@", [[array objectAtIndex:0] objectAtIndex:0]);
但它不起作用。它给了我一个错误说:
-[__NSCFString objectAtIndex:]: unrecognized selector sent to instance
我只想在第一个数组的第一个数组中记录值 1021。