I am doing the following in order to initialise my singelton:
ChatDataController *box = [ChatDataController sharedInstance];
The problem is that i use *box in different places, for example in these methods:
- (void) viewDidAppear:(BOOL)animated
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
Is there a way to only have to initialise once? so that *box can be used in any method within a given class?