It is possible to set an order of initialization of objects at an application launch?
For example: I have two objects in IB: myObj1, myObj2. Both of them implement method -initWithCoder: Properties of objects sets in IB. myObject2 Initialize is depend from properties of myObj1.
Question: Is exist methods that set order of objects initialization? I must be sure that myObj1 will ALWAYS be initialized before myObject2 in runtime.
Thanks!