Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a UICollectionView with a UITextView in each cell. When I tap on one of the text views and the keyboard comes up, I get this warning in the output panel:

setting the first responder view of the collection view but we don't know its type (cell/header/footer)

Text input works fine, though. However, I'd really like to know what this warning means before I use this code in production.

share|improve this question
How did you add the UITextView to the cell? – GuidoH Oct 11 '12 at 14:20
In the NIB of the cell – Dorian Roy Oct 12 '12 at 9:50
Any luck on getting what it means? I have the same problem with a UISearchBar and my UICollectionView steals firstReponder on reloadData (outputting this warning). – Yanik Nov 12 '12 at 16:33
No, I can only guess that it has some meaning to the Apple devs and they accidentally left it in the code. – Dorian Roy Nov 13 '12 at 9:16
I have the same problem, I'm afraid there is something wrong, bks after the warning occurred, we can't do insert/delete operation to the UICollectionView! – Dio Nov 17 '12 at 12:06

1 Answer

up vote 3 down vote accepted

I asked the same question on the dev forums and was told by an Apple engineer that I can ignore this warning. Source: https://devforums.apple.com/message/717898

share|improve this answer
Hey, I read your question on the dev forums and since I added a UISearchBar in exactly the same way as you did, I wander if you also have the problem of the firstResponder being stolen by your collectionView when you reload your data with "reloadData"? (I do a reloadData to show my search results in "textDidChange:") – Yanik Nov 29 '12 at 13:46
I ran into the same problem. This happens because reloadData will also reload the header. This means your old header will be removed from the collection view, queued and probably reused during your data source implementation. To work around this I tried not to reload the entire table view, but I also noticed that the UICollectionView will crash during animations when it's not the first responder. There might be a way around this, but so far I haven't looked into this further. – Markus Müller Nov 29 '12 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.