Alright, I'm at a wall. I'm trying to copy the SELECTED ROW from a Table View and add the contents to an ARRAY.
I tried this, but to no avail:
[self.templist addObject:[self.songsList objectAtIndex:indexPath.row]];
Any thoughs would be appreciated. Above, I tried to add the row to an array called templist. But, no luck.
Thanks,
[self.songsList objectAtIndex:indexPath.row]
gives you the expected value. Then make sure none of the ivars behind these properties arenil
. – rmaddy Sep 7 '13 at 4:48