I’m asking
[self presentModalViewController:searchRegionController animated:YES];
after that I try to add NavigationController by
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Add" style:UIBarButtonItemStyleBordered target:self action:@selector(next:)] autorelease];
self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] initWithTitle:@"Cancel" style:UIBarButtonItemStyleBordered target:self action:@selector(cancelAdd:)] autorelease]
self.navigationItem.titleView = someView;
so do like this
in the searchRegionController class
hope this helps.