调整导航提示的表格单元格
我有一个顶部有导航栏的表格视图。我已将文本添加到导航栏的提示属性中。这会剪切第一个表格视图单元格的上半部分。有没有办法告诉表格视图存在提示,或者我是否需要滚动一些自定义内容?
I have a tableview with a navigation bar at the top. I've added text to the prompt property of the navigation bar. This cuts the top half of the first tableview cell. Is there a way to tell the tableview that the prompt is present or do I need to roll something custom?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用独立于 UINavigationController 的导航栏,那么您将需要推出自己的自定义解决方案。您可能需要考虑改用 UINavigationController。
如果您将 UINavigationController 与 UITableViewController 一起使用,这应该会自动发生。即使您使用 UIViewController 和 UITableView 作为视图,这仍然应该自动发生 - 前提是您正确设置了 tableView 的 autoresizingMask 。
If you are using a navigation bar independent of UINavigationController, then you will need to roll your own custom solution. You may want to consider switching to using UINavigationController.
If you are using UINavigationController with UITableViewController, this should happen automatically for you. Even if you are using UIViewController with a UITableView as the view, this should still happen automatically for you - provided that you set the autoresizingMask of the tableView appropriately.