//
|
// PBRetrieveView1.h
|
// IphoneBIMe
|
//
|
// Created by zjf on 2020/9/14.
|
// Copyright © 2020 ProBIM. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface PBRetrieveView1 : UIView
|
+(instancetype)MenuViewWithDependencyView:(UIView *)dependencyView MenuView:(UIView *)leftmenuView isShowCoverView:(BOOL)isCover;
|
|
/**
|
* 初始化方法
|
*
|
* @param dependencyView 传入需要滑出菜单的控制器的view
|
* @param leftmenuView 传入需要显示的菜单的view
|
* @param isCover bool值,是否有右边遮挡的阴影
|
*
|
* @return self
|
*/
|
-(instancetype)initWithDependencyView:(UIView *)dependencyView MenuView:(UIView *)leftmenuView isShowCoverView:(BOOL)isCover;
|
|
/**
|
* 展开菜单,可放进点击事件内
|
*/
|
-(void)show;
|
/**
|
* 关闭菜单不带动画效果
|
*/
|
-(void)hidenWithoutAnimation;
|
/**
|
* 关闭菜单带动画效果
|
*/
|
-(void)hidenWithAnimation;
|
@end
|
|
NS_ASSUME_NONNULL_END
|