JXRedInputView.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //
  2. // JXRedInputView.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 17/8/15.
  6. // Copyright © 2017年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface JXRedInputView : UIView
  10. @property (nonatomic, assign) NSUInteger type;
  11. @property (nonatomic, assign) BOOL isRoom;
  12. @property (nonatomic, weak) id delegate;
  13. @property (nonatomic, strong) UIView * countView;
  14. @property (nonatomic, strong) UIView * moneyView;
  15. @property (nonatomic, strong) UIView * greetView;
  16. @property (nonatomic, strong) UIButton * sendButton;
  17. @property (nonatomic, strong) UILabel * noticeTitle;
  18. @property (nonatomic, strong) UITextField * countTextField;
  19. @property (nonatomic, strong) UITextField * moneyTextField;
  20. @property (nonatomic, strong) UITextField * greetTextField;
  21. @property (nonatomic, strong) UILabel * countTitle;
  22. @property (nonatomic, strong) UILabel * moneyTitle;
  23. @property (nonatomic, strong) UILabel * greetTitle;
  24. @property (nonatomic, strong) UILabel * countUnit;
  25. @property (nonatomic, strong) UILabel * moneyUnit;
  26. @property (nonatomic, strong) UILabel * allMoneyLab;
  27. @property (nonatomic, strong) UIView * line;
  28. -(instancetype)initWithFrame:(CGRect)frame type:(NSUInteger)type isRoom:(BOOL)isRoom delegate:(id)delegate;
  29. -(void)stopEdit;
  30. @end