I’m developing an iPad app, and it’s the first time I put the popover view to good use. I’m using the popover view as a menu with categories, and only have 1 screen with video’s. When the user selects a category, the ‘FeaturedViewController’ has to reload the view with the new playlistId.
When a user selects a category, it’s easy to do: double playlistId = [[playlists.items objectAtIndex:indexPath.row] playlistId];
But how do I get that playlistId in my FeaturedViewController and reload the view?
Look:
The Key NSlogs correctly, but i dont get a response from nextView.PLID in the FeaturedViewController at all.