Skip to content

Peek & Pop Compat for Long Press on non 3D touch Device of iOS 9+

License

Notifications You must be signed in to change notification settings

BramYeh/BAPeekPop

Repository files navigation

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), hanru.yeh@gmail.com

License

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