PopMenuCenter.h 1.2 KB

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