| 12345678910111213141516171819202122232425262728293031 |
- //
- // PopMenuCenter.h
- // BuguLive
- //
- // Created by 岳克奎 on 17/3/10.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "HyPopMenuView.h"
- #import "VideoDynamicViewC.h"
- #pragma mark - 枚举
- typedef NS_ENUM(NSInteger, STPopMenuShowState) {
- STPopMenuHidden = 0,//消失
- STPopMenuShow = 1,//显示
- };
- @interface PopMenuCenter : NSObject <HyPopMenuViewDelegate,UIActionSheetDelegate>
- @property (nonatomic, strong) HyPopMenuView *menu; //点击TabBarC中间btn弹出菜单View
- @property(nonatomic,assign) STPopMenuShowState stPopMenuShowState; //控制menu的显示
- @property (nonatomic, strong)UITabBarController *tabBarC; //记录tabBarC
- @property (nonatomic, strong)VideoDynamicViewC *videoDynamicViewC;
- +(PopMenuCenter *)sharePopMenuCenter;
- //-(void)showGoodsDynamicViewC;
- #pragma mark - 2 -出售微信
- -(void)showSaleWeChatViewC;
- #pragma mark ************************** Plublic 公有方法 ***********************************
- // 在聊天页面首页显示条数
- -(void)showCheckAuthentication:(void(^)(BOOL haveAuthentication,NSString *dynamicCountStr))block;
- @end
|