我在自定义单元格中使用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];
}
感谢。
答案 0 :(得分:0)
我将方法从 textFieldShouldEndEditing:更改为 textFieldDidEndEditing:,现在正在运行。