MGGroupBottomCellView.h 679 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // MGGroupBottomCellView.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/4/23.
  6. // Copyright © 2019年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <QMUIButton.h>
  10. NS_ASSUME_NONNULL_BEGIN
  11. @protocol MGBotViewDelegate <NSObject>
  12. - (void)onComment;
  13. - (void)onLike;
  14. - (void)onShare;
  15. @end
  16. @interface MGGroupBottomCellView : UIView
  17. @property(nonatomic, strong) QMUIButton *btnLike;
  18. @property(nonatomic, strong) QMUIButton *btnComment;
  19. @property(nonatomic, strong) QMUIButton *btnShare;
  20. @property (nonatomic,weak)id<MGBotViewDelegate>delegate;
  21. -(void)resetBottomViewWithComment:(NSString *)comment likes:(NSString *)likes;
  22. @end
  23. NS_ASSUME_NONNULL_END