alvises / 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.
http://www.poeticoding.com/fppopover-a-customizable-uipopovercontroller-for-iphone-and-ipad/
Other
903 stars 250 forks source link

How To

FPPopover, a customizable UIPopoverController for iPhone and iPad

FPPopover

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

The development started as first as a Mobiloud open source component, after some commits we realized was a appreciated library so I decided to continue the development, also the development is continuing thank to your feedbacks and pull requests!

Features

What you need

To use FPPopoverController you only need

That's it.

How to use it


Let's start with a simple example

-(IBAction)buttonClicked:(UIButton*)okButton
{
    //the view controller you want to present as popover
    YourViewController *controller = [[YourViewController alloc] init]; 

    //our popover
    FPPopoverController *popover = [[FPPopoverController alloc] initWithViewController:controller]; 

    //the popover will be presented from the okButton view 
    [popover presentPopoverFromView:okButton]; 

    //no release (ARC enable)
    //[controller release];
}

This will display a black popover with automatic arrow positioning and a maximum of 200x300 content size and no delegate messages.

The title of YourViewController (controller.title) will be presented on the top.

Customize the size

Default content size is 200x300. This can be set using the following property

popover.contentSize = CGSizeMake(150,200);

This property defines a maximum boundary for content, but the actual content area displayed may vary according to the what is found to be the optimal size to fit the popover on the screen (e.g. when adjusting the layout from portrait to landscape mode).

Customize the tint

popover.tint = FPPopoverRedTint;

Contact us if you need more tints!

Force the arrow direction

If you need to force the arrow direction use the arrowDirection property

popover.arrowDirection = FPPopoverArrowDirectionUp;

No arrow

If you want a popover like a popup, with no arrow

popover.arrowDirection = FPPopoverNoArrow;

No title

//the view controller you want to present as popover
YourViewController *controller = [[YourViewController alloc] init]; 
controller.title = nil;

Borderless popover

popover.border = NO;
popover.tint = FPPopoverWhiteTint;

Transparency

If you want to change alpha channel and handle the transparency of the popover

popover.alpha = 0.8;

transparent popover

Delegate messages

Set your delegate

YourViewController *controller = [[YourViewController alloc] init]; 
FPPopoverController *popover = [[FPPopoverController alloc] initWithViewController:controller]; 
popover.delegate = controller;
....

In this case we are setting up the YourViewController as our popover delegate.

Know when a new popover is displayed

- (void)presentedNewPopoverController:(FPPopoverController *)newPopoverController 
          shouldDismissVisiblePopover:(FPPopoverController*)visiblePopoverController;

Use this delegate method to know when a new different popover is displayed. If you want to dismiss the old popover, and release it, send the dismiss message inside this method.

- (void)presentedNewPopoverController:(FPPopoverController *)newPopoverController 
          shouldDismissVisiblePopover:(FPPopoverController*)visiblePopoverController
{
    [visiblePopoverController dismissPopoverAnimated:YES];
    [visiblePopoverController autorelease];
}

Know when the popover is dismissed

    - (void)popoverControllerDidDismissPopover:(FPPopoverController *)popoverController;

Use this delegate method to know when the popover is dismissed. This could happen when the user taps outside the popover or when a dismiss message is sent by other actions.

Contributors

Thank you to the following wonderful people for contributing: alphabetically sorted