Skip to content

shkutkov/WYPopoverController

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WYPopoverController

WYPopoverController is for the presentation of content in popover on iPhone / iPad devices. Very customizable.

Screenshots


Features


  • UIAppearance support
  • Works like UIPopoverController
  • Automatic orientation support
  • UIStoryboard support
  • Keyboard show / hide support
  • iOS 6 & 7 support

UIAppearance support


Property Type Default value (iOS 6) Default value (iOS 7)
tintColor UIColor nil nil
arrowBase CGFloat 42 25
arrowHeight CGFloat 18 13
borderWidth CGFloat 6 0
outerCornerRadius CGFloat 8 5
innerCornerRadius CGFloat 6 0
viewContentInsets UIEdgeInsets { 3, 0, 0, 0 } UIEdgeInsetsZero
fillTopColor UIColor #373f47ff #f4f4f4ff
fillBottomColor UIColor #3b434cff #f4f4f4ff
glossShadowColor UIColor #c3c5c77f #transparent
glossShadowBlurRadius CGFloat 0 0
glossShadowOffset CGSize { 0, 1.5 } CGSizeZero
outerShadowColor UIColor #000000bf #transparent
outerShadowBlurRadius CGFloat 8 0
outerShadowOffset CGSize { 0, 2 } CGSizeZero
innerShadowColor UIColor #000000bf #transparent
innerShadowBlurRadius CGFloat 2 0
innerShadowOffset CGSize { 0, 1 } CGSizeZero
strokeColor UIColor #262c31ff nil
minOuterCornerRadius CGFloat 0 0
innerStrokeColor UIColor #262c31ff #transparent
outerStrokeColor UIColor #262c31ff #transparent
Arrow & Border

, ,

Corner radius & View content insets

, ,

Stroke & Fill

, , , ,

Gloss

, ,

Outer

, ,

Inner

, ,

Works like UIPopoverController


passthroughViews

An array of views that the user can interact with while the popover is visible.

wantsDefaultContentAppearance

Determines whether the default content appearance should be used for the popover.

popoverLayoutMargins

The margins that define the portion of the screen in which it is permissible to display the popover.

ARC


WYPopoverController uses ARC.

Installation


iOS SDK 7.0 (with Xcode 5) is required.

Cocoapods

Add this line pod 'WYPopoverController', '~> 0.1.4' to your PodFile.

Your PodFile should look like :

platform :ios, '6.0'
pod 'WYPopoverController', '~> 0.1.4'

To use the master branch of the repo :

platform :ios, '6.0'
pod 'WYPopoverController', :git => 'https://github.com/nicolaschengdev/WYPopoverController.git'

Manually

Add these files to your project :

  • WYPopoverController.h and WYPopoverController.m
  • WYStoryboardPopoverSegue.h and WYStoryboardPopoverSegue.m

And link QuartzCore.framework library in the Build Phases of your project targets.

Examples


Simple

In the implementation of your view controller

// YourViewController.m

@interface YourViewController () <WYPopoverControllerDelegate>
{
    WYPopoverController* popoverController;
}

- (IBAction)showPopover:(id)sender;

@end

@implementation YourViewController

- (IBAction)showPopover:(id)sender
{
	popoverController = [[WYPopoverController alloc] initWithContentViewController:controller];
    popoverController.delegate = self;
    [popoverController presentPopoverFromRect:button.bounds inView:button permittedArrowDirections:WYPopoverArrowDirectionAny animated:YES];
}

- (BOOL)popoverControllerShouldDismiss:(WYPopoverController *)controller
{
    return YES;
}

- (void)popoverControllerDidDismiss:(WYPopoverController *)controller
{
    popoverController.delegate = nil;
    popoverController = nil;
}

@end
Appearance (Tint Color)
WYPopoverBackgroundView* appearance = [WYPopoverBackgroundView appearance];
[appearance setTintColor:[UIColor orangeColor]];
Appearance (Flat Popover)
UIColor* greenColor = [UIColor colorWithRed:26.f/255.f green:188.f/255.f blue:156.f/255.f alpha:1];

WYPopoverBackgroundView* popoverAppearance = [WYPopoverBackgroundView appearance];
        
[popoverAppearance setOuterCornerRadius:4];
[popoverAppearance setOuterShadowBlurRadius:0];
[popoverAppearance setOuterShadowColor:[UIColor clearColor]];
[popoverAppearance setOuterShadowOffset:CGSizeMake(0, 0)];
        
[popoverAppearance setGlossShadowColor:[UIColor clearColor]];
[popoverAppearance setGlossShadowOffset:CGSizeMake(0, 0)];
        
[popoverAppearance setBorderWidth:8];
[popoverAppearance setArrowHeight:10];
[popoverAppearance setArrowBase:20];
        
[popoverAppearance setInnerCornerRadius:4];
[popoverAppearance setInnerShadowBlurRadius:0];
[popoverAppearance setInnerShadowColor:[UIColor clearColor]];
[popoverAppearance setInnerShadowOffset:CGSizeMake(0, 0)];
        
[popoverAppearance setFillTopColor:greenColor];
[popoverAppearance setFillBottomColor:greenColor];
[popoverAppearance setOuterStrokeColor:greenColor];
[popoverAppearance setInnerStrokeColor:greenColor];
        
UINavigationBar* navBarInPopoverAppearance = [UINavigationBar appearanceWhenContainedIn:[UINavigationController class], [WYPopoverController class], nil];
[navBarInPopoverAppearance setTitleTextAttributes: @{
                  UITextAttributeTextColor : [UIColor whiteColor],
            UITextAttributeTextShadowColor : [UIColor clearColor],
           UITextAttributeTextShadowOffset : [NSValue valueWithUIOffset:UIOffsetMake(0, -1)]}];
Storyboard
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
	if ([segue.identifier isEqualToString:@"[YOUR_SEGUE_IDENTIFIER]"])
	{
		WYStoryboardPopoverSegue* popoverSegue = (WYStoryboardPopoverSegue*)segue;

		UIViewController* destinationViewController = (UIViewController *)segue.destinationViewController;
        destinationViewController.contentSizeForViewInPopover = CGSizeMake(280, 280);		// Deprecated in iOS7. Use 'preferredContentSize' instead.

        popoverController = [popoverSegue popoverControllerWithSender:sender permittedArrowDirections:WYPopoverArrowDirectionAny animated:YES];
        popoverController.delegate = self;
	}
}

Handling popover controllers during orientation changes


When showing a popover controller, there are times when you will need to handle how the popover controller appears after a change in device orientation.

Situations when handling is required:

  • If the popover controller is presented from a target rectangle using the -presentPopoverFromRect:inView:permittedArrowDirections:animated method of WYPopoverController.
  • If the popover controller is presented from a bar button item that is removed after the rotation has finished.

Change logs


A brief summary of each WYPopoverController release can be found on the wiki.

Contact


License


WYPopoverController is available under the MIT license.

Copyright © 2013 Nicolas CHENG

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

WYPopoverController is for the presentation of content in popover on iPhone / iPad devices. Very customizable.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Objective-C 99.3%
  • Ruby 0.7%