I'm trying to read this but unable to get proper value.
NSString *arr = [self.myArray valueForKey:@"description"];
NSLog(@"%@",arr);
I'm getting this output :
(
(
050,
051
)
)
And also it should remove first 0 i.e 050->50
But I want it as single array, like this [50, 51]
I'm newbie, please help me out.