The UIPopoverController class is used in iOS to manage the presentation of content in a popover.
0
votes
1answer
26 views
How to release memory from a PopOverViewController when the controller is removed from a view, ARC
Hi so I have a popoverviewcontroller with a tableview in it. everytime i press the button to view the popover, some memory is allocated (1024). If i press it multiple times the allocations just grows ...
0
votes
1answer
28 views
UIPickerView Runtime Error Unrecognized selector sent to instance
I am trying to put a UIPickerView inside of a Popover view in the navigation bar of my application. When I tap the button that will open the popover I get the following error:
-[PopoverView ...
0
votes
3answers
34 views
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 ...
0
votes
1answer
20 views
UIPopoverController size changes when new controller is push on navigation controller set in UIPopover controller
I have below issue with UIPopoverController and UINavigationController:
I have created one UINavigationController with one UITableViewController in that. Then I have set this UINavigationController ...
6
votes
1answer
59 views
How to change the coordinates of a popover on the fly
Background:
I need to display a popover from a imageview (rect not barbutton) which has a search field.The popover needs to be presented from a UIModalPresentationFormSheet.This is successfully ...
0
votes
1answer
17 views
UIImagePickerController in portrait mode inside UIPopoverController when view is locked for landscape mode
I am using the following code for opening camera inside pop up view controller in iPad. Everything is working fine except it always open in landscape mode. I want to open pop camera in landscape mode. ...
0
votes
0answers
25 views
Native UI Popover in Lua Application
I'm trying to use a native UI popover controller in an app I'm mostly writing in Lua. I'm planning on using Wax to integrate Objective-C and Lua. However, I don't know how to do this.
I'd like the ...
0
votes
0answers
20 views
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 ...
0
votes
0answers
27 views
Create iOS calendar add entry functionality
I have an iPad app where I want to add a UIPopoverController.
In this popover I want to create something similar to this
So far I have created a table view with different sections.
When you click on ...
0
votes
2answers
37 views
iOS: dismiss popOver generated with Interface Builder with button within the popOver
I have a button which leads to a popOver, all created in Interface Builder. The popOver is closed when I press somewhere outside of it, but I would also like to implement a button within the popOver ...
0
votes
1answer
20 views
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 ...
0
votes
0answers
24 views
Orientation problems after dismissing UIActivityViewController
I'm developing a very simple app for iPad where a UIActivityViewController is presented from a UIPopoverController (as per documentation). The UIActivityViewController is initialized with a a custom ...
0
votes
3answers
24 views
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 ...
0
votes
2answers
36 views
UIBarButtons too close to the edges of UINavigationBar inside UIPopoverController
The UIBarButtonItems in the UINavigationBar inside of our UIPopoverController are hugging the left and right sides of the nav bar:
Here is the CustomPopoverController that we implemented. It used ...
4
votes
1answer
110 views
Extra height of popover's content view
I open UIPopoverController popover with UITableViewController as it's content view controller.
Popover has the proper size, and it's content view at first glance adjusts correct, but if I try to ...