AddGroupLabelVC.m 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. //
  2. // AddGroupLabelVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/8.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "AddGroupLabelVC.h"
  9. #import "TDGroupLabelCell.h"
  10. @interface AddGroupLabelVC ()<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout,UITextFieldDelegate>
  11. @property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
  12. @property (weak, nonatomic) IBOutlet UIButton *doneBtn;
  13. @property (weak, nonatomic) IBOutlet UITextField *textField;
  14. @property (weak, nonatomic) IBOutlet UIButton *addBtn;
  15. @property (strong, nonatomic) NSMutableArray *dataArray;
  16. @end
  17. @implementation AddGroupLabelVC
  18. +(AddGroupLabelVC *)initAddGroupLabelVC{
  19. AddGroupLabelVC *controller = [StoryboardManager.shared.TDGroup instantiateViewControllerWithIdentifier:@"AddGroupLabelVC"];
  20. controller.modalPresentationStyle = UIModalPresentationFullScreen;
  21. return controller;
  22. }
  23. - (NSMutableArray *)dataArray
  24. {
  25. if (!_dataArray) {
  26. _dataArray = [NSMutableArray array];
  27. }
  28. return _dataArray;
  29. }
  30. - (void)viewDidLoad {
  31. [super viewDidLoad];
  32. self.fd_prefersNavigationBarHidden = YES;
  33. self.collectionView.delegate = self;
  34. self.collectionView.dataSource = self;
  35. [self.collectionView setCollectionViewLayout:[[UICollectionViewFlowLayout alloc] init]];
  36. self.collectionView.showsVerticalScrollIndicator = NO;
  37. self.collectionView.showsHorizontalScrollIndicator = NO;
  38. self.collectionView.contentInset = UIEdgeInsetsMake(24, 30, 0, 24);
  39. [self.collectionView registerNib:[UINib nibWithNibName:@"TDGroupLabelCell" bundle:nil] forCellWithReuseIdentifier:@"TDGroupLabelCell"];
  40. self.collectionView.backgroundColor = [UIColor whiteColor];
  41. self.textField.returnKeyType = UIReturnKeyDone;
  42. self.textField.delegate = self;
  43. self.dataArray = [NSMutableArray arrayWithArray:self.array];
  44. [self.collectionView reloadData];
  45. WS(weakSelf);
  46. [self.addBtn setAction:^{
  47. if (weakSelf.textField.text.length > 0) {
  48. [weakSelf.dataArray addObject:weakSelf.textField.text];
  49. [weakSelf.textField resignFirstResponder];
  50. dispatch_async(dispatch_get_main_queue(), ^{
  51. [weakSelf.collectionView reloadData];
  52. });
  53. }
  54. }];
  55. [self.doneBtn setAction:^{
  56. [weakSelf doneAction];
  57. }];
  58. }
  59. - (BOOL)textFieldShouldReturn:(UITextField *)textField
  60. {
  61. [self.textField resignFirstResponder];
  62. return YES;
  63. }
  64. - (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
  65. return 1;
  66. }
  67. - (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
  68. return self.dataArray.count;
  69. }
  70. - (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
  71. {
  72. return CGSizeMake((SCREEN_WIDTH - 63) * 0.5, 58.f);
  73. }
  74. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumLineSpacingForSectionAtIndex:(NSInteger)section
  75. {
  76. return 7.f;
  77. }
  78. - (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section
  79. {
  80. return 9.f;
  81. }
  82. - (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
  83. TDGroupLabelCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"TDGroupLabelCell" forIndexPath:indexPath];
  84. cell.titleL.text = self.dataArray[indexPath.item];
  85. cell.deleteBtn.hidden = NO;
  86. WS(weakSelf);
  87. [cell.deleteBtn setAction:^{
  88. [weakSelf.dataArray removeObjectAtIndex:indexPath.item];
  89. dispatch_async(dispatch_get_main_queue(), ^{
  90. [weakSelf.collectionView reloadData];
  91. });
  92. }];
  93. return cell;
  94. }
  95. - (void)doneAction
  96. {
  97. WS(weakSelf);
  98. NSString *string = [self.dataArray componentsJoinedByString:@","];
  99. [[HttpManager sharedHttpManager] POSTUrl:Host(APP_Group_Update) parameters:@{@"LabelName":string,@"Id":@(self.Id)} responseStyle:DATA success:^(id _Nonnull responseObject) {
  100. if (weakSelf.refreshDataBlock) {
  101. weakSelf.refreshDataBlock(weakSelf.dataArray);
  102. }
  103. [weakSelf dismissViewControllerAnimated:YES completion:^{
  104. }];
  105. } failure:^(NSError * _Nonnull error) {
  106. SHOWERROR([ZYCTool handerResultData:error]);
  107. }];
  108. }
  109. @end