Questions tagged [uipopovercontroller]

The UIPopoverController class is used to manage the presentation of content in a popover. You use popovers to present information temporarily. The popover content is layered on top of your existing content and the background is dimmed automatically. The popover remains visible until the user taps outside of the popover window or you explicitly dismiss it. Popover controllers are for use exclusively on iPad devices.

The popover content is layered on top of your existing content in a special type of window. The popover remains visible until the user taps outside of the popover window or you explicitly dismiss it. Popover controllers are for use exclusively on iPad devices. Attempting to create one on other devices results in an exception.

UIPopoverController Class Reference

1718 questions
0
votes
1 answer

ios UINavigationController in UIPopoverController and setPopoverContentSize error

I present a UINavigationController in a UIPopoverController. The UINavigationController has 2 UIViewControllers that have the same widths, but different heights. To make sure both UIViewControllers are presented in a proper sized …
0
votes
1 answer

Popover view controller not showing

I have a login view which I want to display in popover. I am doing this from code as below: UIStoryboard *storyboard = [UIStoryboard storyboardWithName:[NSString stringWithFormat:@"MainStoryboard_%@", isIPAD ? @"iPad" : @"iPhone"]…
Juli Gupta
  • 93
  • 1
  • 10
0
votes
0 answers

Present UIPopoverController with navigation controller

I am attempting to present a UIPopoverController similar to the bookmark selector in Safari with the title above and the ability to go back and forward. I found this tutorial:…
0
votes
1 answer

TextField text not displaying from UIPopOverView

I have a UITextField on main ViewController and once I touch down the Textfield UIPopOverController with UIPickerView opens which is from other class.now I want when I select any value in Pickerview of popovercontroller the selected value should…
user2519391
  • 41
  • 1
  • 8
0
votes
2 answers

ios UIPopOverController tag property

Does UIPopOverController have a tag property? I have multiple UIPopOverControllers, how do I distinguish between them from the delegate methods? Thanks.
CLDev
  • 1,076
  • 3
  • 12
  • 20
0
votes
1 answer

Arrow on popViewController not going where I tell it

I have a UIPickerController that appears when you click a button though the arrow on it doesn't change position from the bottom even when I use UIPopoverArrowDirectionUp. - (IBAction)addPicture:(id)sender { CGRect rect =…
0
votes
1 answer

how to show popover with direction up or down relative to the button's current position

I have a scroll view added as a sub view with a height of approx. 500. scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(x,y,500,300)]; [self.view addSubView:scrollView]; Now I have another view say View1 which contains a lot of buttons…
Junaid Ahmed
  • 175
  • 1
  • 9
0
votes
1 answer

Dismiss a popover from itself programatically

I'm making a UIPopoverController and displaying it. All is well, content is loading... except I need to dismiss the popover when a button is pressed. The UIPopoverController's delegate is set to self but I don't know how to call a method in the…
user2687781
  • 325
  • 2
  • 11
0
votes
2 answers

Create a UIView in storyboard

How to create UIView in storyboard for UIBarButtonItem presenting popovercontroller. Is it possible to create separate UIView without having any UIViewController? Requirement is that UIBarButtonitem in UIViewController when pressed should present a…
user1120133
  • 3,244
  • 3
  • 48
  • 90
0
votes
2 answers

UINavigationBar in a UIPopoverController looks ugly if created programatically

I want to open a Popover in code after a specific action happens (e.g. tap on a button). The following Code let me open a Popover with a NavigationBar but it don't looks like the one I've done with IB. (IB approach was embedding a UIViewController…
dannyyy
  • 1,784
  • 2
  • 19
  • 43
0
votes
1 answer

issue in putting toolbar and picker as subview of UIPopoverController

i want to put tool bar and picker view as sub view of popovercontroller and for that i do following and so far my picker view is displaying perfectly but just above that i also want to display my tool bar in which there is button named Done for…
Prakash Desai
  • 511
  • 3
  • 14
0
votes
1 answer

UIPopovercontroller Flip animation

Can we flip UIPopovercontroller horizontally so as to load a new subview view? Is it possible to achieve an animation which does: Load small view in UIpoovercontroller first and on a click of a button in popover Flip UIpoovercontroller and loads…
sniper
  • 399
  • 1
  • 3
  • 9
0
votes
2 answers

Removing UIImagePickerController from UINavigationController in a UIPopoverController

This worked in iOS6, so not sure what the issue is. inside my UINavigationController (ioNavController) I present the UIImagePickerController with the Following: UIImagePickerController *imagePicker = [[UIImagePickerController alloc]…
0
votes
3 answers

loading multiple popOver in the same view for iPad

I am a novice Ios developer and this a my first project which is ipad specific.I am having some issues with UIPopOverControl class implementation. In my project i have a View controller subclass and In that view i have several buttons . What I need…
sujat
  • 287
  • 2
  • 16
0
votes
2 answers

Seguing to a View Controller that´s already been initialized

I got a problem with a universal app that were initial design for the iPhone and I used a 3rd party class for a popup on the iPhone. on the iPad I want to use the Apple provided popup. My problem is my code is written so that the View Controller for…
Tom Lilletveit
  • 1,872
  • 3
  • 31
  • 57