1

次のコードを使用して、画像を ImageView に割り当てています

-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender

{
   if ([segue.identifier isEqualToString:@"imgHand"])
   {
      RingController *ctrl =  segue.destinationViewController ;
      ctrl.imgHand.image = [[UIImage alloc] initWithContentsOfFile:self.selectedPath];
   }
}

ただし、imgHand には黒が表示され、画像が割り当てられていません。

このパスの画像は存在し、既に CollectionView の画像に割り当てられています

Printing description of self->selectedPath:
/var/mobile/Applications/79092B1E-BE77-4583-A39A-C2D4767ADA12/Documents/myHandImage1.png
4

1 に答える 1