GithubHelp home page GithubHelp logo

cepopuppickerview's Introduction

CEPopupPickerView

CEPopupPickerView is a library that shows a UIPickerView at the bottom of the screen, just like the Facebook app. When the users taps outside the UIPickerView or taps the selected row, the popup dismisses and calls the delegate.

Installation

CEPopupPickerView is best installed via CocoaPods. Alternatively, you can drag the CEPopupPickerView/CEPopupPickerView.{h,m} files into your project.

Usage

Add an instance variable to your view controller to make sure you keep a reference:

CEPopupPickerView* popupPicker;

Put this somewhere in your view controller:

NSArray* values = [NSArray arrayWithObjects:@"Don", @"Peggy", @"Pete", nil];
popupPicker = [[CEPopupPickerView alloc] initWithValues:values callback:^(NSInteger selectedIndex) {
        NSLog(@"you chose: %@", [values objectAtIndex:selectedIndex]);
}];
[popupPicker presentInView:self.view];

If you want to run an example, clone this project and open the Xcode Project.

For now, the view only works in portrait mode on the iPhone, but patches for landscape mode are more than welcome. An iPad port isn't planned, as it is probably better to put a UIPickerView inside a UIPopover.

Tests

To run the tests, clone this project. Then run

    pod install CEPopupPickerView

This will generate a CEPopupPickerView.xcworkspace, which you can then open. Run the target "Integration Tests". The tests use KIF and can be found in the group CEPopupPickerViewIntegrationTests.

cepopuppickerview's People

Contributors

chriseidhof avatar readmecritic avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cepopuppickerview's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.