Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do I get `missing proxy for identifier <some external object>` messages?

I have an app with a tab bar controller which supervises two view controllers, each with it's own nib. Each nib has some external objects (the view controller in each case, plus some singletons in the other case). When this thing launches, I get messages in the console which say "missing proxy for identifier" followed by the name of one of the external objects. It looks to me like this is just a message as the app seems to run fine. The nib and objects all seem to be hooked up fine.

My question: is this message a problem, and if so, what is it trying to tell me? I feel like it may mean something is not hooked up correctly.

like image 211
Bryan Hanson Avatar asked Jan 22 '26 13:01

Bryan Hanson


1 Answers

You are doing the following

you are using two rows in a table with same reusable identifier in a tableView or table view controller

like image 124
ProgrammingNinja Avatar answered Jan 25 '26 11:01

ProgrammingNinja