Quote:
Originally Posted by harrytheshark
It may just be as simple as the array isn't retaining the objects.
components = [[NSArray alloc] init];
components = [string componentsSeperated...];
Then make sure to release the array when you're done with it.
|
I added that first line and no difference. However, I added a [components retain]; right before the [table reloadData]; and that did the trick. Although I am still confused where or why it was getting released before the cells could update?