I would like to have a navigation bar in my popover using storyboard.
When I try to accomplish it by referring the button to pop up to navigation controller (that refers to my pop up screen) in my storyboard:
Then, I try to assign the delegate to my pop up controller:
CheckBoxListingViewController *rdvc = [segue destinationViewController];
rdvc.delegate = self;
But it always returns null in pop up controller when I try to NSLog it.
I think the cause is because of I refer to navigation controller instead of directly refer to pop up controller since when I refer it directly, the delegate is not null anymore.
What can I do to accomplish these screens? Any suggestion? Many thanks!