Coder Social home page Coder Social logo

ahkactionsheet's Introduction

AHKActionSheet

License: MIT CocoaPods

An alternative to the UIActionSheet with a block-based API and a customizable look. Inspired by the Spotify app. It looks a lot better live than on the GIF (because compression).

Demo GIF

Features

  • Modern, iOS 7 look
  • Block-based API
  • Highly customizable
  • Gesture-driven navigation with two ways to hide the control: either quick flick down or swipe and release (at the position when the blur is starting to fade)
  • Use a simple label or a completely custom view above the buttons
  • Use with or without icons (text can be optionally centered)
  • Status bar style matches the one from the presenting controller

Demo

Build and run the AHKActionSheetExample project in Xcode. AHKViewController.m file contains the important code used in the example.

Requirements

  • iOS 6.0 and above
  • ARC
  • Optimized for iPhone

Installation

CocoaPods

AHKActionSheet is available through CocoaPods, to install it simply add the following line to your Podfile:

pod "AHKActionSheet"

Manual

Copy all files from Classes/ directory to your project. Then, add QuartzCore.framework to your project.

Usage

A simple example:

#import "AHKActionSheet.h"
...
AHKActionSheet *actionSheet = [[AHKActionSheet alloc] initWithTitle:nil];
[actionSheet addButtonWithTitle:@"Test" type:AHKActionSheetButtonTypeDefault handler:^(AHKActionSheet *as) {
    NSLog(@"Test tapped");
}];
[actionSheet show];

The view is customizable either directly or through a UIAppearance API. See the header file (Classes/AHKActionSheet.h) and the example project to learn more.

Changelog

0.4.2

  • Fixed incorrect orientation of the blurred snapshot on iOS 8

0.4.1

  • Improved dismissal error handling

0.4.0

  • Added a new button type: AHKActionSheetButtonTypeDisabled
  • Added cancelOnPanGestureEnabled property, which allows you to disable:

    Gesture-driven navigation with two ways to hide the control: either quick flick down or swipe and release (at the position when the blur is starting to fade)

  • Internal scroll view's bounces is now disabled when cancelOnPanGestureEnabled is turned off and when the scroll view's contentSize's height is smaller than the screen's height.

0.3.0

  • Added iOS 6 support

0.2.0

  • Added animationDuration property
  • Added some basic unit tests
  • Improved comments in the header file

0.1.3

0.1.2

  • UIWindow is now snapshotted instead of UIViewController's view

0.1.1

  • Refactorings
  • Bug fixes

0.1.0

  • Initial release

Author

Arkadiusz Holko:

ahkactionsheet's People

Contributors

fastred avatar filip214 avatar iuriimoz avatar

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.