I have been working on an update to one of my apps, which involves a string being sorted into an array in order to display a UITableView in a certain way. The code is as follows:
I am trying to add the stateKey string into multiple arrays, not just vicArray. I have tried every combination I could think of, but nothing seems to work.
Help!
Code:
- (void)presortHotspotByState
{
for (NSString *stateKey in vicArray)
{
[self presortHotspotByState:stateKey];
}
}
I am trying to add the stateKey string into multiple arrays, not just vicArray. I have tried every combination I could think of, but nothing seems to work.
Help!