从自定义表视图单元格 Xcode 4 推送视图
我想知道是否有一种方法可以让用户在表视图中创建/删除单元格,但是当他们单击它时,他们创建的每个单元格都会加载相同的视图。我已经创建了第一部分,但我似乎无法让它加载视图。
I was wondering if there was a way to have the user create/delete cells in a Table View but when they click on it, every cell that they create loads the same view. I have the first part created but I cannot seem to get it to load a view.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地创建一个新视图并推送 UITableView 的 didSelectRowAtIndexPath 委托方法。
对于前。
Simple create a new view and push on didSelectRowAtIndexPath Delegate method of UITableView.
For ex.