Git Product home page Git Product logo

bapeekpop's Introduction

BAPeekPop

CI Status Version License Platform Codecov

  • Peek & Pop Compat for Long Press on non 3D touch Device of iOS 9+
  • BAPeekPop is the Objective-C library to support 3D touch similar operation on older device via long-press

BAPeekPop

Integration Guide

Initilization and Register

To integrate BAPeekPop, in your viewcontroller, you just init BAPeekPop instance and call its register

BAPeekPop *baPeekPop = [[BAPeekPop alloc] initWithTarget:self];
[baPeekPop registerForPreviewingWithDelegate:self sourceView:self.view];

The delegate is the same as id<UIViewControllerPreviewingDelegate>

Delegate Handler

BAPeekPop has no extra methods in delegate, you only need to implement

NS_CLASS_AVAILABLE_IOS(9_0) @protocol UIViewControllerPreviewingDelegate <NSObject>

The reference example

How to add Action and Group Buttons

It's similar as original implementaion, you need to offer @property(nonatomic, readonly) NSArray<id<UIPreviewActionItem>> *previewActionItems; in the previewing-viewcontroller

And in this array, you need to add objects of BAPreviewAction or BAPreviewActionGroup

BAPeekPop has offer their factory methods as following

NS_CLASS_AVAILABLE_IOS(9_0) @interface BAPreviewAction : UIPreviewAction

@property(nonatomic, assign, readonly) UIPreviewActionStyle style;

+ (instancetype)actionWithTitle:(NSString *)title style:(UIPreviewActionStyle)style handler:(void (^)(UIPreviewAction *action, UIViewController *previewViewController))handler;

@end

NS_CLASS_AVAILABLE_IOS(9_0) @interface BAPreviewActionGroup : UIPreviewActionGroup

+ (instancetype)actionGroupWithTitle:(NSString *)title style:(UIPreviewActionStyle)style actions:(NSArray<BAPreviewAction *> *)actions;

@end

The reference example

Example Project

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

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

pod "BAPeekPop"

Author

Bram (hryeh), [email protected]

License

BAPeekPop is available under the MIT license. See the LICENSE file for more info.

bapeekpop's People

Contributors

bramyeh avatar gabmarfer avatar kimmanuel 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.