Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

First of all, I've found a similar question but it does not do the exact same thing I want: UIStoryboardPopoverSegue opening multiple windows on button touch

I have a tool bar with a button that presents a popOver, all wired up with the storyboard.

The problem is that each time I press a button, a new popOver comes up, over the previous one.

In the other question, they suggest this code:

- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if([segue isKindOfClass:[UIStoryboardPopoverSegue class]]){
        // Dismiss current popover, set new popover
        [currentPopover dismissPopoverAnimated:YES];
        currentPopover = [(UIStoryboardPopoverSegue *)segue popoverController];
    }
}

But what it does is, when you press the button, it dismisses the previous popOver (if there's one) and continues with the segue to show a new popOver.

What I want to do is for the button to act as a toggle, meaning that it dismisses the popOver if there's one (not showing a new one) and shows a popOver if there's not one already.

That, by the way, is how it used to work for me without the storyboard.

share|improve this question
you should think about getting your accept rate up... 38% is kinda bad – Muad'Dib Dec 9 '11 at 18:26
I just need to get some answers to accept. Don't I? – Odrakir Dec 12 '11 at 7:38
true :) its just that people will be less likely to answer you when you have a low accept rate :) – Muad'Dib Dec 12 '11 at 7:44
I would love to get my accept rate up. I just need some valid answers. This is a vicious circle. – Odrakir Dec 12 '11 at 10:11

1 Answer

up vote 1 down vote accepted

I think this answer answers your question. Basically you change the action of the button each time it's pressed to either display or dismiss the popover.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.