我创建了一个自定义表格,我可以在其中垂直滚动项目列表,但我也可以左右滚动这些垂直索引。我将如何移动到新视图(在故事板中)?
有谁知道如何以编程方式将自定义单元格中的 segue 添加到新视图中?
这是我创建自定义单元格的代码:
static NSString *CellIdentifier = @"ArticleCell";
__block ArticleCell_iPhone *cell = (ArticleCell_iPhone *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
这是我的自定义表格的截图:http: //i200.photobucket.com/albums/aa42/mininukinfuts/ScreenShot2012-05-24at145417.png
这是我正在关注的教程的链接:http ://www.raywenderlich.com/4723/how-to-make-an-interface-with-horizontal-tables-like-the-pulse-news-app-part -2