I've created a custom table where I can scroll through a list of items vertically, but I can also scroll left and right through those vertical index. How would I go about moving to a new view (in storyboards)?
Does anyone know how to programmatically add a segue from the custom cell to a new view?
Here's the code where I created the custom cell:
static NSString *CellIdentifier = @"ArticleCell";
__block ArticleCell_iPhone *cell = (ArticleCell_iPhone *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
Here's a screenshot of my custom table: http://i200.photobucket.com/albums/aa42/mininukinfuts/ScreenShot2012-05-24at145417.png
And here's a link to a tutorial I was following: http://www.raywenderlich.com/4723/how-to-make-an-interface-with-horizontal-tables-like-the-pulse-news-app-part-2