Hi everyone, I'm trying to iterate an array of strings when I click a button in my iPhone app. In the viewDidLoad method, this code works fine, however, I use the tab bar to switch between views, and I want the view to refresh when I switch to it from another view. This is the code that it breaks, very similar to the code that I use in another button that works great
NSEnumerator *e = [deckList objectEnumerator];
id obj;
It crashes whenever it gets into "id obj" Any help would be most appreciated.
source
share