BBA3DTouchConfig.h
731 Bytes
//
// BBA3DTouchConfig.h
// BBA3DTouch
//
// Created by hyman on 2017/3/31.
// Copyright © 2017年 hyman. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
API_AVAILABLE(ios(9.0))
@interface BBA3DTouchConfig : NSObject
/// Priority in using the navigation
@property(nonatomic, weak) UINavigationController *navigation;
@property(nonatomic, weak) UIViewController *presentingViewController;
/// In addition to the UITableView, need to specify the responder
@property(nonatomic, weak) NSObject *clickActionTarget;
@property(nonatomic, assign) SEL clickAction;
@property(nonatomic, weak) id argument;
@property(nonatomic, strong) NSArray <id <UIPreviewActionItem>> *previewActionItems;
@end