Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing proxy for identifier IBFilesOwner

We've got an application that on rare occasions crashes with the error:

Missing proxy for identifier IBFilesOwner

We understand it to be implying that it can't find File's Owner for one of our nibs (xibs) but we've been through and confirmed they all have valid ones set.

There's practically zero on Google, can anyone offer any suggestions?

Thanks.

like image 390
GregularExpressions Avatar asked Oct 07 '22 14:10

GregularExpressions


1 Answers

Hey I had the same problem and it turned out that I was doing some threading and I was executing code that should be on the main thread on another thread. I don't know what you're doing in your app, but hopefully that might give you a clue.

If you share some code we can try and figure out what's going on.

like image 94
Andrew Avatar answered Oct 10 '22 10:10

Andrew