-(void)showsearch:(id)sender
{
    SearchViewController *searchview =[[SearchViewController alloc] initWithNibName:@"SearchViewController" bundle:nil];

    settingpopoverController = [[[UIPopoverController alloc] 
                                    initWithContentViewController:searchview] autorelease];               
    [searchview release];
    [settingpopoverController presentPopoverFromBarButtonItem:sender 
                                    permittedArrowDirections:UIPopoverArrowDirectionAny animated:YES];


}

When I click on button, the app is crash and I got [UIPopoverController dealloc] reached while popover is still visible. message.

link|improve this question

you seem to be mixing up view and controller. is SearchViewController a controller, but you call it a view. – Ross Oct 24 '10 at 16:13
feedback

3 Answers

up vote 1 down vote accepted

think autorelease is incorrect, here is a tutorial

http://www.jannisnikoy.nl/index.php/2010/04/ipad-tutorial-creating-a-popoverviewcontroller

link|improve this answer
what you mean ? – saturngod Oct 24 '10 at 16:13
got it. i remove autorelease and it's working fine. – saturngod Oct 24 '10 at 16:14
@saturngod glad to be of help – Aaron Saunders Oct 24 '10 at 16:17
-1 Blog post does not explain why the poster's code crashed. It only is a tutorial for popovers – Sanjit Saluja Apr 30 '11 at 0:22
1  
@Sanjit Sauja, essentially the addition of autorelease in the code IS what makes the code crash. Either you retain your UIPopoverController or experience the crash that the OP asks about. – Yar May 1 '11 at 12:40
feedback

There are some good discussions on this topic here:

Retain/release pattern for UIPopoverController, UIActionSheet, and modal view controllers ?

UIPopoverController and memory management

The gist of it is you need to:

  • assign your autoreleased popover to a retain property
  • set the property to nil in your view's dealloc
  • as well as setting it to nil in the popoverControllerDidDismissPopover.
link|improve this answer
feedback

Problem is you're setting

settingpopoverController =

when you mean to do

self.settingpopoverController =

for which the autorelease would be correct. The second one uses the property accessors, the first just uses the iVar.

link|improve this answer
accessors? really? – Sanjit Saluja Apr 30 '11 at 0:23
@Sanjit Saluja, in Obj-c 2.0 and beyond, the second syntax -- assuming it's a "retain" property -- would call "retain" on the UIPopoverController that the OP calls autorelease on. Otherwise when the current method ends, the UIPopoverController is autoreleased, reaches a retain count of 0, and is dealloc'ed. Let me know if you think I'm missing something. – Yar Apr 30 '11 at 6:41
feedback

Your Answer

 
or
required, but never shown

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