I have this warning:
Prototype table cells must have reuse identifiers
The project is pretty large and we have many tableViews and I cannot find the cell that causes this warning. Is there a way to find the source of this warning? I can see the storyboard being the Friends.Storyboard but all the cells there have an id.




Open
Friends.storyboardwith Left Clic: Open As/Source Code. You should see now theFriends.storyboardas a XML File.I create specially a
UITableView, with two cells, one with an reuse identifier, and another one without one:Simplified (pointing out what to look for):
So looking for
<tableViewCellshould be a good start. You could also use a RegularExpression, but that's maybe too much work (too much tests to check it) opposed to the usage a "manual" search.