I have few questions regarding Popover segue.
1) In what case one should use that?
2) In my case i have to show popover on button click and the popver having another view controller as shown in figure.1
3) If one having image as popover then how to hide the outer native blue popover? as shown in figure.2
4) What is the different in using Popover segue & using below code on button click
classobj = [self.storyboard instantiateViewControllerWithIdentifier:@"identifier"];
popOver = [[UIPopoverController alloc] initWithContentViewController:classobj];
[popOver presentPopoverFromRect:CGRectMake(689,10,50,50) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];