I have made an application where I have Settings Object available in IB. this object have some outlets and actions available.
Now i need to call some methods of this class from other class. so , i am making an object like:
I am not able to load the states of outlets. on debugging i came to know all the outlets are not initialized.
can anyone tell me what is a problem. and i how can i resolve it ?
Now i need to call some methods of this class from other class. so , i am making an object like:
Settings *settingManager = [[Settings alloc] init];
[settingManager loadSettings]; //loadSettings method will display state of all outlets.
I am not able to load the states of outlets. on debugging i came to know all the outlets are not initialized.
can anyone tell me what is a problem. and i how can i resolve it ?