MGNewDTNavView.h 589 B

12345678910111213141516171819202122232425
  1. //
  2. // MGNewDTNavView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/11/26.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JSBadgeView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface MGNewDTNavView : UIView
  12. @property(nonatomic, strong) QMUIButton *postBtn;//发帖
  13. @property(nonatomic, strong) QMUIButton *searchBtn;//搜索按钮
  14. @property(nonatomic, strong) QMUIButton *chatBtn;//聊天按钮
  15. @property(nonatomic, strong) JSBadgeView *jsbadge;//系统消息
  16. @property(nonatomic, copy) void (^clickPostBlock)(NSInteger i);
  17. @end
  18. NS_ASSUME_NONNULL_END