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
0
votes
1 answer

UIPopover get exact position on screen

I have an iPad app in which I show an UIPopover view. I want to set the background of the popover depending on its position on the screen. Is it possible to get the exact position of the UIPopover relative to the screen?
lukas
  • 2,300
  • 6
  • 28
  • 41
0
votes
1 answer

how to implement popover controller in storyboard, custom segue

This is mouli, I'm implementing a custom segue for pushing (with animation) from firstview to second view, its work fine. but iam not getting back from secondview to firstview with same animation. Here the first screen appears with out animation.…
user2823044
  • 315
  • 2
  • 5
  • 14
0
votes
1 answer

Xamarin Ios PopoverController unhandled exception

Does anyone know why this code won't work. Just added a popovercontroller to the hello world example from xamarin. I always get a unhandled exception but there is no additional information in the output. public class MyViewController :…
Daniel Z.
  • 324
  • 1
  • 11
0
votes
1 answer

FPPopoverController does not pop

I have a problem with the implementation of FPPopover library. I have a similar issue than on an other post : Same issue on StackOverFlow Unfortunately, a reference to the popover controller does not fix my problem. On my future controller, I have…
brcebn
  • 1,571
  • 1
  • 23
  • 46
0
votes
1 answer

UIPopoverController alternative both for iPad and iPhone

I want to have some universal ui component which I can use for both iPad and iPhone. Since popovers are available only for iPad I want to have a single component which will run on both devices. I don't want to have to write separate modules since…
gop
  • 2,150
  • 5
  • 26
  • 54
0
votes
1 answer

How to prevent a popover from dismissing when clicking outside in Xamarin with C#?

Hello i need to prevent my popover from dismissing when clicking outside the box. I found some answers but all in objective C and i cant understand it very well. Stop UIPopover from dismissing automatically Anyone knows how to do that in xamarin?
user3120770
  • 199
  • 1
  • 7
  • 19
0
votes
1 answer

iPad application, changing popover dimensions whilst view is loaded

I have an app in which its my intention to change screen orientation as the user rotates the iPad. In my app I have several popovers. The potential issue I'm concerned about is one of my popovers covers most the screen so if rotation changes, I'd…
0
votes
1 answer

Why my UIPopoverController is popping in this way?

I've two buttons on iPad that opens two popups. They are opened with the code: CGRect frame = [self.view convertRect:self.addNewFolderButton.frame fromView:self.addNewFolderButton.superview]; [self.popover presentPopoverFromRect:frame …
Alessio Crestani
  • 1,602
  • 4
  • 17
  • 38
0
votes
1 answer

Why is *drawRect* not being called from the ViewController?

I have an iPad app (XCode 5, iOS 7, Storyboards and ARC). I have a UIPopover created in a UIViewController, and when I tap a button it correctly displays the popover. Now, I want to draw a grid in that popover; I know I have to add code to…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
0
votes
1 answer

Table View in a content View controller of a popover not resizing properly

Background: I have a View controller which has a header view(UIView), a footer view (UIView), table view and a search bar(UISearchBar) above it . This is made using xib. I need to present this inside a popover. This is done and everything is working…
Prathamesh Saraf
  • 709
  • 4
  • 14
0
votes
1 answer

How to display an error in UIPopover generated in another class?

I have an iPad app (XCode5, ARC, iOS6 and Storyboards). In one view controller I have a popover that allows the user to either login or register. Tapping the Login or Register button causes the login/register processing to occur in another class.…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
0
votes
1 answer

Load image on table view cell selected

I have table view as popover on button click.I wanted that particular image to be loaded when user selects any particular table view cell.I have written code like this,but its not working. - (void)tableView:(UITableView *)tableView…
bapi
  • 1,903
  • 10
  • 34
  • 59
0
votes
1 answer

UITableView inside popover will not scroll

I am trying to fix someone's code and am running into a problem. Here is the situation: I have a full screen UIViewController that has a bottom bar button. When I press that button, it shows a popup view controller in the bottom left of the screen.…
Marc
  • 3,386
  • 8
  • 44
  • 68
0
votes
1 answer

how to get the a property value when dismissing uipopover

I am using a uipopover to present a mini number pad to the user when they enter a textfield on my main view controller. when they enter numbers using the number pad, i save the entry into a nsstring property that I've named keypadvalue. there is an…
superllanboy
  • 607
  • 2
  • 6
  • 18
0
votes
2 answers

Make Popover Background Black in Interface Builder

I've successfully hooked up several popover views in interface builder. I've tried to make the background black by setting the view background color to black, but I am still getting a white arrow on the popover itself and white artifacts on the 4…
PhilBot
  • 748
  • 18
  • 85
  • 173