Hi, Im making an app for the iPad and started making some Popovers. What I wanted to do now is: Have a UIImageView in the Original View, that changes when the popover is opened.
SignalImage.image = [UIImage imageNamed:@"PopoverOn.png"];
That works perfectly fine. But now im looking for a place to embed the inverse code:
SignalImage.image = [UIImage imageNamed:@"PopoverOff.png"];
This should be called as soon as the PopOver is dismissed. I tried using ViewDidLoad but the view does not reload when the popover is closed because it runs in the background...