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

Native UI Popover issues

I am trying to use a native UIPopOverController in my App. I am writing the code in Lua. I am planning to use Wax to integrate Objective-C and Lua. However, I don't know how to do this. I'd like the popover to have a Header and then a list of…
Matthew Mellea
  • 89
  • 1
  • 10
0
votes
1 answer

Objective C: Popover Dismissed Without Opening the File to Another App

In the app that I am working I have files to be downloaded from a server and store it locally in the app's sandbox, then open it in iBooks using UIDocumentInteractionController. I have done it all the downloading, saving, and opening it to iBooks.…
0
votes
1 answer

UIPopover: Orientation Change Handling

we have some issues with the native popover controller used on the ipad, maybe someone of you already found some work-arounds. Issue 1: Some of our Popovers used in a form have also a navigationcontroller embedded, so if we dismiss the popover after…
user1788415
0
votes
3 answers

Unable to display popover in iOS from UITextField

I am working on a very basic app that displays a popover when the user is entering text into a UITextField. Unfortunately, the popover is not showing up and the default keyboard is appearing (which shouldn't). Here is my relevant code…
syedfa
  • 2,801
  • 1
  • 41
  • 74
0
votes
1 answer

UIPopovercontroller not showing properly

I need to show a simple popover view in which a navigation bar with a done button and a picker view is to be shown. i am doing everything programmatically and code is shown below. CGRect displayFrame = CGRectMake(0, 0,…
ggthedev
  • 47
  • 8
0
votes
2 answers

Do iPhones support UIPopoverView?

I have a universal app. Will I be able to use the UIPopover View Controller universally (for both iPad and iPhone)?
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
0
votes
3 answers

Prevent more than one UIPopover from being displayed at a time

My app has a monthly view and for each day in the month, on a long press, a popover is displayed. I have used self.view setExclusiveTouch:YES to prevent more than one popover occurring at once but that still occasionally allows multiple popovers. …
Dave Chambers
  • 2,483
  • 2
  • 32
  • 55
0
votes
1 answer

How to dismiss the Popoverviewcontroller?

I have select the Popoverviewcontroller segue in storyboard for IPad over UIBarbutton to view controller. When i select one time on the add button it displays the Popoverviewcontroller, I want to dismiss the popover when the Popoverviewcontroller…
URathore
  • 3
  • 4
0
votes
0 answers

How to close the popover when clicked somewhere in the window using angularjs?

I am using angularjs for my front-end. I have created some popover windows. I want the popover window to be disappear when I click somewhere in the browser window. How can I do that using angularjs. Thanks in advance
anilCSE
  • 2,461
  • 3
  • 23
  • 29
0
votes
1 answer

Is UINavigationController needed for UITableView in a popover?

I have an iPad app (XCode 4.6, iOS 6.2, Storyboards, ARC), with 4 scenes and a navigation controller, all connected using segues. On the first scene, if the user taps on it, it will display a UIPopover which contains a UITableView. The popover and…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
0
votes
1 answer

How to remove all the UIPopOver references of my app on idle time exceed

Im setting an MaxIdleTime in my app once if no userInteraction happened within this specified time i'm just removing the existing view from my window and adding my login (Home) view as subview to my apps UIWindow through a method called logout. In…
Graham Bell
  • 1,139
  • 1
  • 14
  • 30
0
votes
1 answer

TSpopoverviewcontroller tabelview updation

How to add contents to the tabelview controller which is in custom class in iphone? Here is my code: -(void) showActionSheetw:(id)sender forEvent:(UIEvent*)event { UITableViewController *tableViewController = [[UITableViewController alloc]…
Globas techn
  • 95
  • 1
  • 6
0
votes
1 answer

iPad displaying a selected pic from a popover

After researching about UIImagePickerController, I got this code to select an image from a popover and then display it in myParticularImageView. This the ViewController.m: @interface ViewController () { UIImagePickerController…
Joe Davis
  • 9
  • 2
0
votes
1 answer

How to show buttons horizontally in uipopoverviewcontroller

I want to create a popoverviewcontroller with 3 buttons only(Add, Delete, Edit). It should show horizantally. I used Action sheet but its showing vertically. How to achieve this? Thanks --J
Jack Ian
  • 25
  • 2
0
votes
2 answers

Objective C: Opening A PDF File on iBooks

I am downloading a PDF file from an online server and save it to my the App's Sandbox then view it in iBooks. The iBooks viewing is what i am struggling now. I tried this code: UIDocumentInteractionController *docController =…
1 2 3
99
100