Answer : NSJSONSerialization.
NSJSONSerialization class can be used to convert JSON to Foundation objects and Foundation objects to JSON. In your case, you should use -JSONObjectWithData:options:error: of NSJSONSerialization class to retrieve a Foundation object from given JSON data.
Sample Code :
NSError *error;
NSDictionary *json = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];
NSArray *fetchedArr = [json objectForKey:@"ns"];