Files
real-e-party-iOS/YuMi/Modules/YMLogin/View/FeedBackViewController.h
edwinQQQ a35a711be6 chore: Initial clean commit
- Removed YuMi/Library/ (138 MB, not tracked)
- Removed YuMi/Resources/ (23 MB, not tracked)
- Removed old version assets (566 files, not tracked)
- Excluded Pods/, xcuserdata/ and other build artifacts
- Clean repository optimized for company server deployment
2025-10-09 16:19:14 +08:00

40 lines
1.1 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) UIScrollView *scrollView;
@property (nonatomic, strong) UIView *scrollContentView;
@property (nonatomic, strong) UIButton *closeKeyboardButton;
@property (nonatomic, strong) UILabel *title_1;
@property (nonatomic, strong) UILabel *title_2;
@property (nonatomic, strong) UILabel *title_3;
@property (nonatomic, strong) UILabel *title_4;
@property (nonatomic, strong) UICollectionViewFlowLayout *typeCollectionLayout;
@property (nonatomic, strong) UICollectionView *typeCollectionView;
@property (nonatomic, strong) UITextView *feedbackTextView;
@property (nonatomic, strong) UILabel *feedbackPlaceholderLabel;
@property (nonatomic, strong) UILabel *feedbackCharCountLabel;
@property (nonatomic, strong) UILabel *feedbackCharLimitLabel;
@property (nonatomic, strong) UIButton *uploadImageButton;
@property (nonatomic, strong) UIImageView *uploadImageView;
@property (nonatomic, strong) UITextField *contactTextField;
@end
NS_ASSUME_NONNULL_END