Reputation: 33090
Unknown class BGTableViewWithBackgroundAndTopBottom in Interface Builder file.
The problem is I have so many interface Builder class I do not know which one contains BGTableViewWithBackgroundAndTopBottom
Upvotes: 0
Views: 226
Reputation: 4001
Open terminal and change the directory to the root of your project. Then run:
grep -rnI "BGTableViewWithBackgroundAndTopBottom" .
This should display the filename and line number of the files containing the string "BGTableViewWithBackgroundAndTopBottom"
The options used for grep are:
Upvotes: 2