muestra un botón para obtener una respuesta json igual a una cadena como @ "no aprobado"

Aquí estoy buscando algunos clips de la API. Y quiero mostrar un botón cuando el estado del clip no está aprobado, por lo que en respuesta de json actualmente estoy mostrando "0" para "no aprobado". así que ahora quiero mostrar un botón cuando
staus es "0". obtuve debajo del código de la pila solamente y funciona bien hasta [park enumerateObjectUsingBlock ..] obtengo una respuesta como estado igual a "1" y de algunos clips "0". pero mi código no funciona después de NSSring * title, muestra el título como nulo, así que dime cómo obtener el valor en * title

 // log debugger response -- park=(__NSArrayM) *    @"3 objects"    
                         [0]    (MyVideos *)  
 //  _clip_name=(NSTaggedPointerString) *   @"Kotak1"       
 // _state=(NSTaggedPointerString) *    @"1"    
 // _clip_image_path=(__NSCFString *)@"1EKNA1464617788.jpg" 

 // status = (NSString *)nil     

 NSURL *url = [NSURL URLWithString:@"task=webapi.getJClips"];

 park = [jsonLoader videosFromJSONFile:url];

[park enumerateObjectsUsingBlock:^(id object, NSUInteger idx, BOOL *stop) {

 // if i add a breakpoint at above line and on this line it give me response state = "1" but on below line it crashes

 //here it crashes on below line in debugger it shows title nil

  NSString *title = object[@"state"];

  }

  // here below is code for showing hidden button after getting response "0" 

if ([title isEqual:@"0"]) {

        //If so, get the correct button from the enumerate idk and set hidden NO and text = title
  //      UIButton *button = [buttonArray objectAtIndex:idx];
   //     button.hidden = NO;
    //    button.text = title;
    }

Respuestas a la pregunta(1)

Su respuesta a la pregunta