So want I want to be able to do is click on a button, have a tableViewController pop up appear and then click on one of the entries to bring me to a new view.
I already have the tableView pop up set up with the proper entries that I get from an NSArray.
I just don't know how to make it so that when I click on an entry, it brings me to my desired view. I believe it has something to do with the following default function:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
but I'm not sure. I have an NSArray *array of entries and a MyViewController class and so if you can help me make it do something like the following it'd be great:
if(array entry 1) go to MyViewController1
if(array entry 2) go to MyViewController2
etc...