12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- //
- // NYComplaintPageViewController.m
- // jiaPei
- //
- // Created by Ning.ge on 2023/6/30.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "NYComplaintPageViewController.h"
- @interface NYComplaintPageViewController ()
- @property (nonatomic,strong) UIButton *currentObj_button;
- @property (nonatomic,strong) UIButton *currentType_button;
- @property (weak, nonatomic) IBOutlet QMUITextView *content_textview;
- @end
- @implementation NYComplaintPageViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // Do any additional setup after loading the view from its nib.
- [self setupUI];
- }
- - (void)dealloc {
- NSLog(@"投诉建议-NYComplaintPageViewController");
- }
- #pragma mark - PublicMethods
- #pragma mark - PrivateMethods
- - (void)setupUI {
- self.title = @"投诉建议";
- [self configureUI];
- }
- - (void)configureUI {
-
- }
- #pragma mark - 事件
- //投诉建议
- - (IBAction)buttonObjActiondo:(id)sender {
-
- }
- //投诉类型
- - (IBAction)buttonTypeActiondo:(id)sender {
-
- }
- @end
|