ChatComplainBodyView.h 524 B

12345678910111213141516171819202122232425262728
  1. //
  2. // ChatComplainBodyView.h
  3. // TeacherDaya
  4. //
  5. // Created by Kyle on 2021/5/12.
  6. // Copyright © 2021 DayaMusic. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatComplainBodyView : UIView
  11. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgContainerHeight;
  12. @property (weak, nonatomic) IBOutlet UITextView *inputText;
  13. @property (weak, nonatomic) IBOutlet UIView *imageContentView;
  14. + (instancetype)shareInstance;
  15. + (CGFloat)getViewHeight;
  16. @end
  17. NS_ASSUME_NONNULL_END