I want to send detail to destinationViewController.

[segue.destinationViewController setDetail:item]; 

http://2.firepic.org/2/images/2014-05/17/x2pu26iznie1.png

But I get the error:

http://2.firepic.org/2/images/2014-05/17/obg25xfg6be6.png

How do i fix this?

    1 answer 1

    You try to send detail to UINavigationController, and you need to send to ModalKillerViewController:

     UINavigationController *navigationController = [segue destinationViewController]; ModalKillerViewController *modalKiller = (ModalKillerViewController *)[navigationController topViewController]; [modalKiller setDetail:item]; 

    Something like this.