Questions tagged [uipopover]

UIPopover is a common misrepresentation of UIPopoverController, which is used in iOS to manage the presentation of content in a popover.

UIPopover is a common misrepresentation of UIPopoverController, which is used in iOS to manage the presentation of content in a popover. The iOS SDK does not expose the popover view directly, instead it defines a way to wrap a given controller in an system-created popover.

Please use for all popover-related questions.

270 questions
1
vote
1 answer

How to dismiss a popover in iPhone 5 iOS 6?

When my iPhone 5 app starts up I present no view controller because of the following: - (void) viewDidAppear:(BOOL)animated { } The first thing the user will do is touch a button that is on the initial screen that opens up a menu for retrieving a…
1
vote
3 answers

Prevent popovers from displaying over presented views

I am attempting to display a passcode screen that appears after X amount of inactivity. I use presentViewController:animated:completion: on the root view controller, and it works as expected, except when a popover is already being displayed. The…
1
vote
2 answers

popoverControllerDidDismissPopover NOT doing what I think it should

So, I think that when I click outside of a popover, the method popoverControllerDidDismissPopover should be called. I know this isn't called when dismissPopoverAnimated is called. I have a simple project that I have setup that shows…
Dave Chambers
  • 2,483
  • 2
  • 32
  • 55
1
vote
1 answer

UIPopover delay to disappear after much interaction in iOS Simulator

I'm using monoTouch to program an app with UITextField that show a Popover with results (like the textfield in Google Search with some recomendations). My popover will hide when a cellTable is selected. Everything seems to work normally but when I'm…
orafaelreis
  • 2,855
  • 2
  • 28
  • 31
1
vote
2 answers

Popover controller not dismiss when click on other bar button but dismiss when click other button(or outside popover)

I show a popover using - "presentPopoverFromBarButtonItem" - after that the popover will not dismiss when I click on the other bar button item in right navigation bar buttons. But dismiss the popover when I click elsewhere. Also the issue is not…
Naveen Shan
  • 9,192
  • 3
  • 29
  • 43
1
vote
1 answer

dynamically generated ui bar button needs to push to popover using segue

zThis is based on a question I asked here which I have made good progressed already: custom uitableviewcell will not display label texts I basically followed the tutorial that was provided for…
1
vote
1 answer

iOS - UISearchBar with results in Popover View (using UIViewController from storyboard)

I am having some trouble passing the search bar text to the popover view. The flow is like this: Parent view has a toolbar with a uisearchbar Parent view is connected with a segue to another subclassed uiviewcontroller, and displays this as a…
JimmyJammed
  • 9,598
  • 19
  • 79
  • 146
1
vote
1 answer

Cannot dismiss keyboard from UIPopover in monotouch

I am having trouble to dismiss keyboard from UIPopover. I have text field in popover form when I run this ResignFirstResponder() function nothing happening. Not sure why any idea. it is happening only when I run it from popover. Is it because of…
Akrambek
  • 307
  • 4
  • 12
1
vote
1 answer

In which case one should use Popover segue in storyboard?

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…
Heena
  • 2,348
  • 3
  • 32
  • 58
1
vote
0 answers

UIPopOverController Arrow direction in tableview | iPad

I want to show a UIPopover controller in a UITableView. I want to show it either above or below the selected row. But currently it is covering the selected Row. Any help ?
Devang
  • 320
  • 3
  • 12
1
vote
0 answers

Odd UINavigationController and UIPopOverController behavior

I am presenting a popover with my viewcontroller: UIBarButtonItem *barButton = (UIBarButtonItem*)sender; SettingsViewController *settingsViewController = [[SettingsViewController alloc] initWithNibName:nil bundle:nil]; [self…
Ngoan Nguyen
  • 747
  • 2
  • 9
  • 19
1
vote
3 answers

UIPopoverController presentPopoverFromRect crashes

I'm trying to create a simple popover somewhere on the screen, but for some reason it just keeps crashing. It doesn't give me any erro (Zombie Objects are enabled) UIViewController *viewController = [[UIViewController alloc] init]; UIView *view =…
woutr_be
  • 9,532
  • 24
  • 79
  • 129
1
vote
1 answer

Detect UIPopover resize event

In iOS I am displaying some content within a UIView in a UIPopover. Sometimes the popover resizes when the keyboard is shown. Is there a specific event for the UIView that I can use to resize the subviews etc? If not, what is the best way to…
whatdoesitallmean
  • 1,586
  • 3
  • 18
  • 40
1
vote
1 answer

How to show a rotating object in popover type window in unity

I need to show in my unity project that when i click on a GUI.button a popover like window opens and a 3D custom object is shown rotating automatically on some time interval. And I also need to know that is it possible to show another scene(rotating…
rudeboy
  • 71
  • 5
1
vote
1 answer

UIPopover preventing shake to undo

I have an app which allows text input in various situations. When the text is input into a UITextView or UITextField inside a UIPopover, shake to undo does not work. The UIAlertView asking if you want to undo does not appear when the device (or the…
beev
  • 1,197
  • 2
  • 16
  • 33