user4951
user4951

Reputation: 33090

How do I debug this error unknown class in Interface Builder FIle

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

Answers (1)

James Zaghini
James Zaghini

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:

  • -r recursive
  • -n show line numbers
  • -I skip binary files

Upvotes: 2

Related Questions