NYComplaintPageViewController.m 1020 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. //
  2. // NYComplaintPageViewController.m
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2023/6/30.
  6. // Copyright © 2023 JCZ. All rights reserved.
  7. //
  8. #import "NYComplaintPageViewController.h"
  9. @interface NYComplaintPageViewController ()
  10. @property (nonatomic,strong) UIButton *currentObj_button;
  11. @property (nonatomic,strong) UIButton *currentType_button;
  12. @property (weak, nonatomic) IBOutlet QMUITextView *content_textview;
  13. @end
  14. @implementation NYComplaintPageViewController
  15. - (void)viewDidLoad {
  16. [super viewDidLoad];
  17. // Do any additional setup after loading the view from its nib.
  18. [self setupUI];
  19. }
  20. - (void)dealloc {
  21. NSLog(@"投诉建议-NYComplaintPageViewController");
  22. }
  23. #pragma mark - PublicMethods
  24. #pragma mark - PrivateMethods
  25. - (void)setupUI {
  26. self.title = @"投诉建议";
  27. [self configureUI];
  28. }
  29. - (void)configureUI {
  30. }
  31. #pragma mark - 事件
  32. //投诉建议
  33. - (IBAction)buttonObjActiondo:(id)sender {
  34. }
  35. //投诉类型
  36. - (IBAction)buttonTypeActiondo:(id)sender {
  37. }
  38. @end