Я хочу передать свой UIImageView, в который загружено изображение, от нажатия кнопки в другой UIImageView в другом ViewController.
Вот мой код
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Make sure your segue name in storyboard is the same as this line
if ([[segue identifier] isEqualToString:@"MY_SEGUE"])
{
// Get reference to the destination view controller
ViewControllerName *vc = [segue destinationViewController];
// Pass the current UIImageView to a different UIImageView in a different view controller
[vc setUIImageView:UIImageView2];
}
}
Пока я запускаю это, ничего не происходит, когда я загружаю следующий вид.У меня нет ошибок.Нужно ли мне что-то сказать в - (void) viewDidLoad, чтобы это работало?
Есть ли какие-либо советы или предложения ???