6
votes
-(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.

3
you seem to be mixing up view and controller. is SearchViewController a controller, but you call it a view.Ross

3 Answers

6
votes

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.
3
votes

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.