I have this array and I want to access the first index inside another array.
(
(
1021,
"String1,
"<null>",
"name1, name2",
P,
"String2",
"Link1",
"String3",
"String4"
),
(
1025,
"String1",
"<null>",
"name1, name2"
P,
"String2",
"Link1",
"String3",
"String4"
)
)
I tried to NSLog using this code:
NSLog(@"ID: %@", [[array objectAtIndex:0] objectAtIndex:0]);
But it doesn't work. It gives me an error saying:
-[__NSCFString objectAtIndex:]: unrecognized selector sent to instance
I just want to log the value 1021 in the first array of the first array.