iOS: cargar imagen desde archivo plist

Estoy tratando de mostrar varias imágenes de un archivo plist en UIImageView, escribí mi código así:

NSDictionary *picturesDictionary = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Photos" ofType:@"plist"]];    
    imageArray = [picturesDictionary objectForKey:@"PhotosArray"];
    PhotosInAlbum.image = [UIImage imageWithContentsOfFile:[imageArray objectAtIndex:1]];

¡Pero en realidad no pasa nada, y mi ImageView está vacío! También tengo dos botones para avanzar imágenes hacia atrás.

Contenido de Plist:

Respuestas a la pregunta(5)

Su respuesta a la pregunta