WardPrivilegeButton.h 486 B

123456789101112131415161718192021222324
  1. //
  2. // WardPrivilegeButton.h
  3. // BuguLive
  4. //
  5. // Created by 范东 on 2019/2/1.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WardPrivilegeButton : UIControl
  11. - (instancetype)initWithFrame:(CGRect)frame;
  12. @property (nonatomic, copy) NSString *imageUrl;
  13. @property (nonatomic, copy) NSString *title;
  14. @property (nonatomic, copy) NSString *id;
  15. @property (nonatomic, strong) NSDictionary *dict;
  16. @end
  17. NS_ASSUME_NONNULL_END