Citrrus / MBContactPicker

iOS7 Styled Contact Picker Library that uses a UICollectionView
MIT License
501 stars 60 forks source link

entrytextcell disappears when typing long text in the textfield and moved to new line #103

Open fans3210 opened 8 years ago

fans3210 commented 8 years ago

The whole entrytextcell disappears when typing long text in the textfield and moved to new line

fans3210 commented 8 years ago

I think it's because of the cell size not updating when user are typing. Currently resolved by just performBatchUpdates in textfielddidchange in 'mbcontactcollectionview'

[self performBatchUpdates:^{
  entryCell.backgroundColor = [UIColor blueColor];
} completion:^(BOOL finished) {

}];