Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does this warning mean: "setting the first responder view of the collection view but we don't know its type (cell/header/footer)"

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.

like image 699
Dorian Roy Avatar asked Oct 10 '12 14:10

Dorian Roy


1 Answers

According to Apple, "you can safely ignore that".

https://devforums.apple.com/message/717898#717898

like image 106
Ben Nichols Avatar answered Oct 22 '22 16:10

Ben Nichols