HKPBotView.h 647 B

123456789101112131415161718192021222324252627
  1. //
  2. // HKPBotView.h
  3. // HKPTimeLine 仿赤兔、微博动态
  4. // CSDN: http://blog.csdn.net/samuelandkevin
  5. // Created by samuelandkevin on 16/9/20.
  6. // Copyright © 2016年 HKP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YHWorkGroupButton.h"
  10. @class HKPBotView;
  11. @protocol HKPBotViewDelegate <NSObject>
  12. - (void)onComment;
  13. - (void)onLike;
  14. - (void)onShare;
  15. @end
  16. @interface HKPBotView : UIView
  17. @property (nonatomic,strong)YHWorkGroupButton *btnComment;
  18. @property (nonatomic,strong)YHWorkGroupButton *btnLike;
  19. @property (nonatomic,strong)YHWorkGroupButton *btnShare;
  20. @property (nonatomic,weak)id<HKPBotViewDelegate>delegate;
  21. @end