SendGoodsInfo.h 788 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // SendGoodsInfo.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/2/19.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol SendGoodsInfoDelegate<NSObject>
  11. -(void)sendGoodsExpressid:(NSString*)expressid Number:(NSString *)number;
  12. @end
  13. typedef void(^selectLogisticsEvent)();
  14. @interface SendGoodsInfo : UIView<UITextFieldDelegate>
  15. {
  16. UILabel *orderLb;
  17. UITextField *numField;
  18. UITextField *companyField;
  19. NSDictionary *expressDic;
  20. }
  21. @property (nonatomic, strong)UIButton *accessBtn;
  22. @property (nonatomic, copy)selectLogisticsEvent selEvent;
  23. @property (nonatomic, assign)id<SendGoodsInfoDelegate>delegate;
  24. -(void)setData:(NSDictionary *)dic;
  25. -(void)setExpress:(NSDictionary *)dic;
  26. @end
  27. NS_ASSUME_NONNULL_END