In MainMenu.xib I can drop NSObjects to create class instances. Is the vertical order in which these objects are dropped is the order in which they will be allocated? Can I rely on that?
In MainMenu.xib I can drop NSObjects to create class instances. Is the vertical order
Share
No, you can’t rely on the order in which objects are listed to be the order in which they are instantiated. You can rely on the fact that once
awakeFromNibis called on objects in your nib, all objects have been instantiated and all connections between objects have been created.