如何从一个单元格导航到下一个视图?
我希望我的应用程序有 5 行,并且每行都有特定的高度。每行都有标题、副标题和图像。然后,当我点击任一行(例如第三行)时,我希望能够导航到下一页。我该怎么做?
I want my app to have 5 rows and each row has a particular height. Each row has a title, subtitle and an image. Then i want to be able to navigate to the next page when i tap on either of the rows(for e.g say 3rd row). how do i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
问题第二部分的答案是 initWithStyle:UITableViewCellStyleSubtitle…。这个可以让你有标题和副标题。对于图像来说,每个单元格都已经内置了。
Answer to your 2nd part of the question is the initWithStyle:UITableViewCellStyleSubtitle…. this one allows you to have a title and subtitle. For the image, each cell has already built-in.
使用处理 tableview touch 的方法
您可以检查粘贴了哪一行的
indexPath
。请参阅本教程 - 使用表在数据层次结构中导航浏览次数
Use method for handle tableview touch
You can check
indexPath
which row taped.See this tutorial - Navigating a Data Hierarchy With Table Views
使用 tableview 委托方法
SingleProductViewController 是您想要导航的新视图
祝一切顺利
Use the tableview delegate method
SingleProductViewController is the new view you want to navigate
All the best