如何在 iPhone 中使用视图控制器在表格视图中创建页脚视图
我想在表视图中创建页脚视图。我已经创建了视图控制器并添加了一个子视图作为表视图。那么我如何在该表视图中添加页脚视图?
注意:我只使用了视图控制器,没有使用表视图控制器。
我没有在我的应用程序中使用表视图控制器,因为我在视图控制器中使用了许多控制器作为子视图。有可用的示例程序吗?那么我怎样才能做到这一点呢?
请帮帮我。
谢谢。
I want to create a footer view in my table view.I have created view controller and add a subview as table view. So how can i add the footer view in that table view?.
Note: I have used only view controller, not table view controller.
I haven't used table view controller in my apps, bcoz i have used many controllers as subview in the view controller. Is there any sample programs available? So how can i achieve this?.
Please Help me out.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
让您的控制器成为表视图委托并使用 viewForFooterInSection 方法。有关详细信息,请检查 UITableViewDelegate 协议参考。
Make your controller a table view delegate and use viewForFooterInSection method. For details, check UITableViewDelegate Protocol reference.