This must be a very dumb question.
I want to load a nib with UINibExternalObjects, but before that I have to change names of objects in the nib.
Each placeholder object you add to a nib file must have a unique name. To assign a name to an object, select the object in Xcode and open the inspector window. The Attributes pane of the inspector contains a Name field, which you use to specify the name for your placeholder object. The name you assign should be descriptive of the object’s behavior or type, but really it can be anything you want.
Unfortunately, I can’t find this option in any of the inspectors. Does anyone know where it is?
This only applies to “External Objects” which you add as placeholders to the nib file. (Note that these are distinct from “Objects”:
If you select the external object, then in the attributes inspector there is an “Identifier” field:
This is what is referred to in the documentation. It may have been renamed from “Name” and the documentation is out of date, or it was never right.