UIImageをFirst View ControllerからSecond View Controllerに渡そうとしていますが、これはSecond Viewに表示されません。どうして?OBJECTIVE-C:UIImageのPushViewControllerが機能しません
FirstController.mでの私のコード:
SecondController *second = (SecondController *)[self.storyboard instantiateViewControllerWithIdentifier:@"SBSecondController"];
second.imgCard.image = [UIImage imageNamed:@"image.png"];
[self.navigationController pushViewController:second animated:YES];
SecondController.hでの私のコード:
@property (nonatomic, strong) IBOutlet UIImageView *imgCard;
SecondController.mでの私のコード:
@implementation SecondController
@synthesize imgCard;
ありがとうございました!これは解決策です:) @Subhash Sharma – David
:)ハッピーコーディング –