WFCUPluginItemView.h 464 B

12345678910111213141516
  1. //
  2. // PluginItemView.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/10/29.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WFCUPluginItemView : UIView
  10. @property(nonatomic, strong)UIImageView *imageView;
  11. @property(nonatomic, strong)UILabel *titleLabel;
  12. @property (nonatomic,copy) void (^onItemClicked)(void);
  13. - (instancetype)initWithTitle:(NSString *)title image:(UIImage *)image frame:(CGRect)frame;
  14. @end