UITableView “selection” triggered segue

三世轮回 提交于 2019-12-03 12:31:28

The prepareForSegue:sender: method's sender parameter is the cell you are looking for. You can get it's index path by [self.tableView indexPathForCell:sender] (you may need a cast).

to get a clear view about how to use storyboard please check the following tutorial, how to use Storyboard

make sure that you read the second part too....this will give you a clear idea how to use, and the solution for your question also is there.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!