亚洲免费人人妻人人,cao78在线视频,福建一级毛片,91精品视频免费观看,高清另类图片操逼,日本特黄特色大片免费看,超碰欧美人人澡曰曰澡夜夜泛

iOS高級開發(fā)——CollectionView修改cell的文本及模型重構 -電腦資料

電腦資料 時間:2019-01-01 我要投稿
【www.msguai.com - 電腦資料】

    該篇博客是在《iOS高級開發(fā)——CollectionView的動態(tài)增刪cell及模型重構》的基礎上繼續(xù)進行開發(fā)的,

iOS高級開發(fā)——CollectionView修改cell的文本及模型重構

。在之前那篇博客中,我們實現了動態(tài)的增刪cell,并且使用了模型Model進行重構。今天我們要實現的是動態(tài)修改cell中的描述文字,通過這個案例,我們能發(fā)現使用Model的好處。代碼已經上傳至:https://github.com/chenyufeng1991/CollectionView .中的“動態(tài)增加cell和section實現” 。

    (1)我這里通過長按cell的操作,彈出輸入對話框,然后輸入修改的描述文字。CollectionView本身沒有長按事件,我這里通過增加長按手勢來實現。該功能在《iOS高級開發(fā)——CollectionView的cell長按事件實現》中也有說明。實現代碼如下:

#pragma mark - 創(chuàng)建長按手勢- (void)createLongPressGesture{    //創(chuàng)建長按手勢監(jiān)聽  UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc]                                             initWithTarget:self                                             action:@selector(myHandleTableviewCellLongPressed:)];  longPress.minimumPressDuration = 1.0;  //將長按手勢添加到需要實現長按操作的視圖里  [self.collectionView addGestureRecognizer:longPress];}

    (2)然后需要在長按開始的方法內彈出輸入對話框,在點擊對話框確定按鈕的時候進行修改文本。實現代碼如下:

- (void) myHandleTableviewCellLongPressed:(UILongPressGestureRecognizer *)gestureRecognizer {      CGPoint pointTouch = [gestureRecognizer locationInView:self.collectionView];    if (gestureRecognizer.state == UIGestureRecognizerStateBegan) {    NSLog(@長按手勢開始);        NSIndexPath *indexPath = [self.collectionView indexPathForItemAtPoint:pointTouch];    if (indexPath == nil) {      NSLog(@空);    }else{      UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@提示 message:@請輸入修改后的描述文字 preferredStyle.:UIAlertControllerStyleAlert];      //以下方法就可以實現在提示框中輸入文本;      [alertController addAction:[UIAlertAction actionWithTitle:@確定 style.:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {        UITextField *cellDescTextField = alertController.textFields.firstObject;                NSString *cellDesc = cellDescTextField.text;        NSLog(@輸入的文字是:%@,cellDesc);                        //找到當前操作的section;        SectionModel *section = [self.dataSectionArray objectAtIndex:indexPath.section];        //找到當前操作的cell;        CellModel *cell = [section.cellArray objectAtIndex:indexPath.row];        //修改該cell的描述文字;        cell.cellDesc = cellDesc;                //確定當前的cell數組;        self.dataCellArray = section.cellArray;        //替換cell數組中的內容;        [self.dataCellArray replaceObjectAtIndex:indexPath.row withObject:cell];        //更新界面;        [self.collectionView reloadData];                      }]];            [alertController addAction:[UIAlertAction actionWithTitle:@取消 style.:UIAlertActionStyleDefault handler:nil]];      [alertController addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {        textField.placeholder = @請輸入Section名稱;      }];      [self presentViewController:alertController animated:true completion:nil];      NSLog(@Section = %ld,Row = %ld,(long)indexPath.section,(long)indexPath.row);          }  }  if (gestureRecognizer.state == UIGestureRecognizerStateChanged) {    NSLog(@長按手勢改變,發(fā)生長按拖拽動作執(zhí)行該方法);  }    if (gestureRecognizer.state == UIGestureRecognizerStateEnded) {    NSLog(@長按手勢結束);  }}

(3)實現效果如下:

   

    ,

電腦資料

iOS高級開發(fā)——CollectionView修改cell的文本及模型重構》(http://www.msguai.com)。

    。

    總結,我會持續(xù)對CollectionView的使用進行更新,并實現其他復雜實用的效果。請大家不斷關注。

最新文章