Questions tagged [fppopover]

FPPopover provides an alternative to the native iOS UIPopoverController, adding support for iPhone and additional opportunities to customize the look and feel of the popovers.

FPPopover provides an alternative to the native iOS UIPopoverController, adding support for iPhone and additional opportunities to customize the look and feel of the popovers. Project is available at github https://github.com/50pixels/FPPopover

13 questions
3
votes
2 answers

UIPopover not displaying correctly from UIButton

I have a UIButton that when clicked, displays a UIPopover with a UIDatePicker in it. It is supposed to display under button for date of birth, but it is covering it instead. This is the code I have: - (IBAction)dateOfBirthButtonPressed:(id)sender{ …
Jon
  • 4,732
  • 6
  • 44
  • 67
2
votes
1 answer

FPPopover UITableView return value

i don't know if anyone is using this open source library for replacing UIPopovercontroller for an iPhone. i'm trying to deploy the FPPopover into my project, everything is working like i want, but the problem is that i'm not able to return any value…
1
vote
1 answer

FPPopover cell.detailTextLabel.text

For those that are familiar with FPPopOver: https://github.com/50pixels/FPPopover Can the cells display subtitle? I had to attach my UITableViewController to a nib. In the Storyboard I have the cell set up to show subtitle, however, when the…
user1107173
  • 10,334
  • 16
  • 72
  • 117
1
vote
0 answers

Center PopOver view when display from navigation bar using FPPopover

I am using FPPopover to display a popover view in my iPhone application, and the problem is that I can't center the popover, you will understand what I mean if you see the image below. Both of my navigation bar buttons display a different popover…
iOSGeek
  • 5,115
  • 9
  • 46
  • 74
0
votes
1 answer

Changing custom tableview cell button background image using NSNotification from non-tableview host class

1) I have a simple table view hosted by view controller and cell hosted by custom UITableViewCell class. A button on my cell drops down a menu (a simple table view controller loading from the non-host 'out of the picture' class using…
Harris
  • 310
  • 3
  • 13
0
votes
1 answer

FPPopover controller does no show

Following files added to my project FPPopoverController.m and .h (the controller) FPPopoverView.m and .h FPTouchView.m and .h ARCMacros.h And following function calling after pressing UIBarButtonItem -(IBAction)popover:(id)sender { …
MD SHAHIDUL ISLAM
  • 14,325
  • 6
  • 82
  • 89
0
votes
1 answer

FPPopover not showing

I'm implementing FPPopover into my application, it was working alright until I added some code to the app delegate to manage and display the correct storyboard depending on the device throughout the app. The code I added is as follows... -…
0
votes
1 answer

With FPPopoverController every time I exit the view with the popover, it NSLogs "FPPopover dealloc", how can I stop this?

It seems in the file: https://github.com/50pixels/FPPopover/blob/master/FPPopoverController.m#L89 At that line it says if the debug option is set to announce it. I don't want it set, nor do I remember setting it. If that's the reason, how do I unset…
user212541
  • 1,878
  • 1
  • 21
  • 30
0
votes
1 answer

Is it possible to move where the arrow is with FPPopover?

I know it's possible with FPPopover to move it to the top, bottom, left or right, and if you assign it to a view, it will point to that view, but what if you're assigning the FPPopover to a CGPoint, like I am in the image below? Here, I don't want…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
0
votes
1 answer

FPPopover won't pop up on button press, just NSLogs "FPPopoverController dealloc"

I have the following code: - (IBAction)textOptionsTapped:(UIBarButtonItem *)sender { UIView *buttonView = [sender valueForKey:@"view"]; FPPopoverController *popover = [[FPPopoverController alloc] init]; popover.arrowDirection =…
user212541
  • 1,878
  • 1
  • 21
  • 30
0
votes
1 answer

FPPopover gives EXC_BAD_ACCESS when touch outside of popover view

I am using FPPopover in my project. I have show popover on UITextField. Popover show properly but after that when i touch outside of popover it gives me EXC_BAD_ACCESS error. ARC is not enable in my project. Thanks in adv.
Bhavin_m
  • 2,746
  • 3
  • 30
  • 49
0
votes
1 answer

Changing the color of FPPopover controller

I have Downloaded FPPopover controller code form Link it consist the some popover colors as green,red,yellow,light gray.. But in that code i am not able to change the popover color as real popover color as in iPad Please go through the code in the…
Ashok
  • 5,585
  • 5
  • 52
  • 80
0
votes
3 answers

Why FPPopover presentPopoverFromPoint doesn't work?

ContentsTableViewController *contentsTableViewController = [[ContentsTableViewController alloc] initWithStyle:UITableViewStylePlain]; contentsTableViewController.delegate = self; popover = [[FPPopoverController alloc]…
Alpha
  • 21
  • 2