12345678910111213141516171819202122232425262728 |
- //
- // ChatComplainBodyView.h
- // TeacherDaya
- //
- // Created by Kyle on 2021/5/12.
- // Copyright © 2021 DayaMusic. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatComplainBodyView : UIView
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *imgContainerHeight;
- @property (weak, nonatomic) IBOutlet UITextView *inputText;
- @property (weak, nonatomic) IBOutlet UIView *imageContentView;
- + (instancetype)shareInstance;
- + (CGFloat)getViewHeight;
- @end
- NS_ASSUME_NONNULL_END
|