在单元格文本字段的textFieldShouldEndEditing方法中调用时,UICollectionView重新加载数据不起作用

时间:2014-09-22 11:37:57

标签: ios objective-c iphone uicollectionviewcell

我在自定义单元格中使用textfield。 textfields的所有委托方法都运行正常。当textfield的编辑完成时,我保存更改的数据并更新数据源(我已经检查并且数据也被更新),然后调用[collectionView reloadData]方法,但是不会触发UICollectionView的委托方法。

 **//Custom cell class textfield delegate method**
- (BOOL)textFieldShouldEndEditing:(UITextField *)textField{
**//tableReload is existing class table view reload method**
   [self.delegate reloadCollectionView];
   return YES;

}

**//Method in another class
-(void)reloadCollectionView{
 [arrayForTable removeAllObjects];
[self saveData];
[collectionView reloadData];

}

感谢。

1 个答案:

答案 0 :(得分:0)

我将方法从 textFieldShouldEndEditing:更改为 textFieldDidEndEditing:,现在正在运行。