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
3 answers

How to set the boundaries for UIPopover with a CGRect?

I am displaying a popover to be presented in a view but leaving some space at the top. I am using presentPopoverFromrect:inView:permittedArrowDirections: but apart from passing the view I also want to restrict the popover within the view within a…
Amogh Talpallikar
  • 12,084
  • 13
  • 79
  • 135
0
votes
1 answer

UIPopover Controller dismissal

I have a doubt. When dismissing a Popover Controller does the initWithContentViewController object gets released? For Example: UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:content]; Does the content gets…
0
votes
2 answers

PopupViewController returns null to ViewController

I would like to pass datepicker.date from DatePickerPopupViewController to my SensorvViewcontroller which is shown below. However, it returns me "null". What am I doing wrong? My code is as follows: #import…
casillas
  • 16,351
  • 19
  • 115
  • 215
0
votes
1 answer

popover tableview shows then disappears

On a button click I am showing a popover view which is a tableview. Everything seems to work and the view shows but then disappears in less than a second. The tableview contains a list of strings and I set the tablecell to be show checkmark. I…
Hassan Hussein
  • 157
  • 1
  • 11
0
votes
1 answer

How to make a DejalActivityView over a popover view

I have a split view controller within a navigation controller and I want to put a DejalActivityView over everything it when I'm doing certain operations. Right now I'm using the following code: - (void)showActivityView { UIView *viewToUse =…
Max Strater
  • 540
  • 6
  • 17
0
votes
0 answers

How to get customize table cell from UIPopoverController

The Popover is a UITableViewController, and the table-cell's class is a customize class 'MyOptionsTableViewCell', which has four UILabel. When the table load and called cellForRowAtIndexPath method, I want to bind the customize data, but the code is…
Sandy Zheng
  • 13
  • 1
  • 4
0
votes
0 answers

NSArray Data to Both UITableView and UICollectionView

I have an NSMutableArray I build with the below code //Question Array Setup and Alloc stratToolsDict = [[NSMutableDictionary alloc]…
0
votes
1 answer

iPad ARC app crashing when UIPopoverController shown

I'm getting the (apparently common) error [UIPopoverController dealloc] reached while popover is still visible. when I try to show a popover controller in my iPad app. There are a ton of questions on here, but my problem appears to be different.…
devios1
  • 36,899
  • 45
  • 162
  • 260
0
votes
1 answer

How to show popover view from button in custom tableviewcell?

I'm developing an app in which the user can enter products and information on those products. All information on a products gets entered in a custom UITableViewCell. I also want to allow the user to add an image of products. To do that, I need to…
Joris416
  • 4,751
  • 5
  • 32
  • 59
0
votes
1 answer

How to force UIView to accept only last touch event

I've created one customView,in which, on click event it shows imagepicker selection option.I've added 5 instances on customView in other View say 'myView'. Now in 'myView' if user selects all 5 views at same time.Then 'myView'shows 5 imagePicker…
kanak
  • 23
  • 4
0
votes
0 answers

dismissing UIPopoverController dismisses MPMoviePlayerController using videos from UIImagePickerController on iPad?

My app works fine iPhone but now that i am porting to iPad, to choose videos from gallery we have to use UIPopoverController (which is a property with nonatomic attribute) while dismissing popover in imagePickerController: - (UIImagePickerController…
0
votes
1 answer

issue in picker view inside popover

I am making application in Ipad i have taken one pickerviewController in Xib and i show it when user click on particular button now i am trying to put that picker view in popover this is how i am trying to achieve this tast…
java
  • 239
  • 5
  • 20
0
votes
1 answer

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 and grows. Since the app is written in ARC i…
0
votes
1 answer

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 to UIPopoverController.I have requirement to have…
Premal
  • 551
  • 1
  • 6
  • 25
0
votes
1 answer

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. Parent view is locked to landscape mode.Please…
Manish Agrawal
  • 10,958
  • 6
  • 44
  • 76
1 2 3
99
100