WXHCodeViewItem.h 515 B

1234567891011121314151617181920212223242526
  1. //
  2. // WXHCodeViewItem.h
  3. // xh_textfield
  4. //
  5. // Created by 路 on 2019/10/24.
  6. // Copyright © 2019年 路. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol WXHCodeViewItem <NSObject>
  10. - (id)init;
  11. @property (assign ,nonatomic) BOOL activated;
  12. @property (strong ,nonatomic) NSString *text;
  13. @optional
  14. - (void)destroy;
  15. @end
  16. @interface WXHCodeViewItem : UIView <WXHCodeViewItem>
  17. - (id)init;
  18. @property (assign ,nonatomic) BOOL activated;
  19. @property (strong ,nonatomic) NSString *text;
  20. - (void)destroy;
  21. @end