41 lines
1.2 KiB
Objective-C
41 lines
1.2 KiB
Objective-C
//
|
|
// FeedBackViewController.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/7/2.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface FeedBackViewController : MvpViewController
|
|
|
|
@property (nonatomic, strong) IBOutlet UIScrollView *scrollView;
|
|
@property (nonatomic, strong) IBOutlet UIView *scrollContentView;
|
|
|
|
@property (nonatomic, weak) IBOutlet UIButton *closeKeyboardButton;
|
|
|
|
@property (nonatomic, weak) IBOutlet UILabel *title_1;
|
|
@property (nonatomic, weak) IBOutlet UILabel *title_2;
|
|
@property (nonatomic, weak) IBOutlet UILabel *title_3;
|
|
@property (nonatomic, weak) IBOutlet UILabel *title_4;
|
|
|
|
@property (nonatomic, weak) IBOutlet UICollectionView *typeCollectionView;
|
|
|
|
@property (nonatomic, weak) IBOutlet UITextView *feedbackTextView;
|
|
@property (nonatomic, weak) IBOutlet UILabel *feedbackPlaceholderLabel;
|
|
@property (nonatomic, weak) IBOutlet UILabel *feedbackCharCountLabel;
|
|
@property (nonatomic, weak) IBOutlet UILabel *feedbackCharLimitLabel;
|
|
|
|
@property (nonatomic, weak) IBOutlet UIButton *uploadImageButton;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *uploadImageView;
|
|
|
|
@property (nonatomic, weak) IBOutlet UITextField *contactTextField;
|
|
|
|
@property (nonatomic, weak) IBOutlet UIButton *submitButton;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|