I have to show one popOver inside the left side of one splitController, I initialize the popOver whit an navigationController. But when i show the popOver my app crash.

Impostazioni *settings = [[Impostazioni alloc] initWithStyle:UITableViewStyleGrouped];
settings.title = NSLocalizedString(@"SETTINGS", nil);
settings.contentSizeForViewInPopover = kContentSizeOfPopOver;
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:settings];
nav.navigationBar.tintColor = kTintColorNavigationBar;
nav.contentSizeForViewInPopover = kContentSizeOfPopOver;
UIPopoverController *popOver = [[UIPopoverController alloc] initWithContentViewController:nav];
[popOver presentPopoverFromBarButtonItem:self.navigationItem.rightBarButtonItem permittedArrowDirections:UIPopoverArrowDirectionDown animated:YES];

This is my code. Any ideas?

EDIT: Crash even if I set only a viewController instead of SplitController :/ And with a empty ViewController :/

link|improve this question

3  
Could you post the crash log, maybe with the NSZombieEnabled stackoverflow.com/questions/2190227/… – Ecarrion Dec 24 '11 at 18:01
I've already set NSZombie enabled but no log :/ – iStopped Dec 24 '11 at 18:25
You're also leaking memory. You should release all of settings, nav, and popOver. – H2CO3 Dec 30 '11 at 19:34
I'm working with ARC and solved – iStopped Jan 2 at 19:29
feedback

2 Answers

up vote 2 down vote accepted

(Possibly duplicate of Error using UIPopoverController.)

In short, you need to retain the UIPopoverController somehow. Either by defining a property for it or by managing the ref count manually. With ARC, the latter is not an option, so you need to store the reference.

link|improve this answer
feedback

I believe you need an instance variable to hold the popoverController. Otherwise after the method that contains the code that you showed finishes nothing will have retained your popover. Unlike when you add a subview to a view which the view would then retain the subview. The same thing does not take place for popovers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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