My code in a UITableViewController:
delegate.myData = [myData objectAtIndex:indexPath.row];
How can I see the values of delegate.myDa
This gets a little complicated. These objects are custom classes or structs, and looking inside them is not as easy on Xcode as in other development environments.
If I were you, I'd NSLog the values you want to see, with some description.
i.e:
NSLog(@"Description of object & time: %i", indexPath.row);