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

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 dissmiss a popover on button click and how to change the size

I am using UIPopover to display videos using UIImagePickerController.In this I have to dismiss my popover when use is clicked.Can anyone please help me to do this? Also I want to change the size of the popover.Now I am using the below code to chane…
iOSiOS
  • 214
  • 2
  • 5
  • 10
0
votes
2 answers

dismissing a popOver

in my app i have a Form sheet view which has a two textfields. one of the textfields when tapped a popover with a picker appears. now when the user finishes from the popover, most of the users, tap on the background to dismiss it. even if i place a…
HusseinB
  • 1,321
  • 1
  • 17
  • 41
0
votes
1 answer

How do I incorporate TSPopover into my app so it doesn't cause run-time crash?

I am trying to incorporate TSPopover into my iPad app (XCode 4.6, Storyboards with UITabBarController, iOS 6.2). I have copied the TSPopover code into my app, and picked one controller to start with. On one scene, I have the little 'i' in a circle…
SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
0
votes
2 answers

How to change pop-over view position iPad - obj C

i am having little problem here. I have made a popout view activated on toolbard button click. However the view is not in the position i want. See screenshot 1st screen shows what i have and 2nd what i want. btw: popview is done problematically.…
Maciej Cygan
  • 5,351
  • 5
  • 38
  • 72
0
votes
3 answers

Is there a way to distinguish between which UIPopOver is dismissed?

I have several popovers in my application and I am having difficulty in determining which popover was dismissed. Is there a "tag" feature equivalent for UIPopOvers? I can NSLog the popoverController in the popoverContorllerDidDismissPopover method…
JasonBourne
  • 338
  • 2
  • 13
0
votes
1 answer

UIPopover with UIDatePicker throws exception in iOS5.1

I have an enterprise iPad app that runs on several iPads of different vintage. All work fine except for one which is the only 1st generation iPad in the group. This iPad is running iOS 5.1.1. The app uses a UIPopoverController in several places and…
0
votes
1 answer

table view controller cs193p iTunesU 9 lesson

Hi I'm studying a 9TH lesson of iTunesU CS193P about table view and compiler report me this error NSInternalInconsistencyException', reason: '-[__NSCFArray removeObjectAtIndex:]: mutating method sent to immutable object' my simulator is iPad 6.1 so…
walle
  • 33
  • 1
  • 5
0
votes
2 answers

Removing the border of uipopover controller in iOS

I would like to create a popover with white color border. I have done by assigning instance of subclass to popoverBackgroundViewClass. I am able to achieve this with white color (using white image at the background )but with border of the popover…
DilipKumar
  • 11
  • 5
0
votes
1 answer

UIControl that's similar to UIPopoverController on iPhone and iPod Touch

I'm looking for something vaguely similar to UIPopoverController to use on iPhone and iPod Touch. I want to use this object to simply display text in a sort of speech bubble (similar to basic speech bubbles in a comic strip). I've considered making…
SundayMonday
  • 19,147
  • 29
  • 100
  • 154
0
votes
2 answers

Is there a method that always gets called right after didSelectRowAtIndexPath?

I'm working on an iPad app in which I have a table view. When the user selects a row in the table, I use didSelectRowAtIndexPath to open a popover. I'm getting an error message saying "message sent to deallocated instance" when I try to use a…
GeneralMike
  • 2,951
  • 3
  • 28
  • 56
0
votes
1 answer

UIPopover Look: Ugly rounded corner edges

I put a UITableView in a UIPopover, and got these white edges instead of real rounded corners when the table view's scrollbar is visible (and, after some time, even without the scrollbar): Is this expected behaviour? I know that UIPopover is…
manmal
  • 3,900
  • 2
  • 30
  • 42
0
votes
1 answer

Get frame of an UIBarButtonItem

I have created an UIBarButtonItem inside a NavigationBar: UIBarButtonItem *filtroFecha = [[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSearch target:self action:@selector(filtrarFecha:)]autorelease]; …
javiazo
  • 1,892
  • 4
  • 26
  • 41
0
votes
4 answers

UIPopoverController & navigate to UIViewController?

I am developing app for iPad. I am able to display UIPopoverController with tableView with some list in VIEW1. I want to navigate from VIEW1 to VIEW2 when user select a row from table. In other words, VIEW1 contains a button1. When user presses…
1 2 3
17
18