StandardsView.h 924 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // StandardsView.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/26.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TZImagePickerController.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^StandardDeleteEvent)(NSInteger tags);
  12. @interface StandardsView : UIView<TZImagePickerControllerDelegate,UITextFieldDelegate>
  13. {
  14. CGFloat imgWidth;
  15. }
  16. @property (nonatomic, strong)UILabel *titleLb;
  17. @property (nonatomic, strong)UITextField *nameField;
  18. @property (nonatomic, strong)UITextField *countField;
  19. @property (nonatomic, strong)UITextField *priceField;
  20. @property (nonatomic, strong)UIButton *imgeBtn;
  21. @property (nonatomic, strong)UIButton *delBtn;
  22. @property (nonatomic, strong)UIButton *deleteBtn;
  23. @property (nonatomic, assign)int index;
  24. @property (nonatomic, copy)StandardDeleteEvent deleteEvent;
  25. @property (nonatomic, strong)NSMutableArray *imageArray;
  26. @end
  27. NS_ASSUME_NONNULL_END