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

Dismiss navigation controller and all of its view controllers stack in UIPopupview using a button within one of the views

I am displaying a UIPopoverView using the code: selectClientPopController= [[UIPopoverController alloc]initWithContentViewController: [self.storyboard…
Ignacy Debicki
  • 437
  • 4
  • 18
1
vote
2 answers

Using same Storyboard Popover from multiple anchors?

I have a popover created in storyboard that simply displays a list that I select from. There are multiple buttons on my view that I need to pick lists for but currently it looks like I have to create the exact same popover for each button. Does…
Travis M.
  • 10,930
  • 1
  • 56
  • 72
1
vote
1 answer

How to prevent segue transfer of control to another UIView when UIPopover is displayed from UITableView?

I have an iPad app (XCode 5.1.1, iOS 7.1, ARC and Storyboards). I have a UITableView that calls other UIViews and UITableViews. (oServicesCell is outlined in image below) Normally, when the user taps the Services row, I display another UITableView…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
1
vote
1 answer

-[UIPopoverController dealloc] reached while popover is still visible

I have a class (ViewOpenAppointments) where I create and display a UIPopover. This is the code to define the popover in my .h file: @interface ViewOpenAppointments : UIView { } @property (nonatomic, retain) UIPopoverController…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
1
vote
0 answers

uipopover from uibutton in tableviewcell crashing the application

I am using a table view controller in story board which contains a custom table view cell in which a 2 labels and one button is the elements. I need to get a ui popover with date picker when I click on button in custom table view cell. It is not…
Priya
  • 25
  • 4
1
vote
0 answers

UIPickerView doesn't "snap" to rows and moves out of bounds

I have a problem with UIPickerView. Following a tutorial on YT I created a UIPickerView in a popover after tapping on a textfield. Everything looks fine, but the UIPickerView acts kind of strange. If I just tap on a row i want to select, it rolls…
Protothomas
  • 79
  • 10
1
vote
1 answer

How to make an iPhone spinner?

I am creating an iphone application, where i am getting confuse. I need to show a control (displaying Online option) as i have mention in below screenshot. I have seen such type of controls in Android. When user will press, it should display…
Anand Gautam
  • 2,541
  • 3
  • 34
  • 70
1
vote
2 answers

uipopover controller is being dealloced monotouch

I think, I am having an issue where a UIPopoverController is being deallocated before it is being dismissed, which is odd as the UIPopoverController is a class variable. Any help would be very much appreciated. Here is the error, I am…
Ryan Dunn
  • 13
  • 2
1
vote
0 answers

UISearchDisplayController is showing results in a popover instead of filtering my UITableView

I'm using this great approach to filter the entries my UITableView in my iPad app. However the UISearchDisplayController creates a UISearchResultsTableView and shows it in a popover. What's wrong here? Has it to do with iOS7? My table view: After…
Norbert
  • 4,239
  • 7
  • 37
  • 59
1
vote
1 answer

Customizing UIPopover

I want to change the color of UIPopover. I've created a custom popover but I can't figure out why doesnt show borders. This is my MainViewController file which shows UIPopover: @synthesize btnShowPopover; UIPopoverController *popover; bool…
amone
  • 3,712
  • 10
  • 36
  • 53
1
vote
2 answers

ios 6 multiple pages in popover

I want to create a view that has a button in the top bar that provides a popover with a list of choices, say a tableView, and when the user selects an item the popover has a flip transition to a secondary set of choices. The first set would be like…
shadonar
  • 1,114
  • 3
  • 16
  • 40
1
vote
1 answer

change only a border color in UIPopoverController using custom UIPopoverBackgroundView

I know that there are several similar questions and there are several tutorials on this subject(like this one : http://blog.teamtreehouse.com/customizing-the-design-of-uipopovercontroller). But my need is just to change a popover border color, and…
pvllnspk
  • 5,667
  • 12
  • 59
  • 97
1
vote
1 answer

Why can't I see the text when I type in a UITextField embedded in a UIPopover?

I have an iPad app (XCode 4.6, ARC, Storyboards) where I want a popover to appear with a UITextField in it when the user taps a UIButton. The popover appears, the keyboard appears, but nothing appears in the UITextField. What am I missing? Here…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
1
vote
0 answers

How to know if my UIViewController is being showed as a UIPopoverController

I have a UIViewController which I show sometimes as a UIViewController and some others like UIPopoverController, but I want them to show a different message depending if is showed as one or another, is there a line of code which helps me to know…
Jesús Ayala
  • 2,743
  • 3
  • 32
  • 48
1
vote
2 answers

uidatepicker in uipopover delegate

I am trying to insert a uipopover with uidatepicker in it with two buttons - Cancel and Done. I was able to design the layout using storyboard with the help of UIDatePicker in UIPopover and How can I show a UIDatePicker inside a Popover on iPad…
kate
  • 113
  • 1
  • 5
  • 17