UINavigationController 大小
是否可以为 UINavigationController 视图设置自定义大小? 我需要将层次结构列表嵌入到视图中,并且我不希望 UINavigationController 全屏显示。
其他解决方案?
提前致谢。
Is it possible to set a custom size for the UINavigationController view?
I need to embed a hierarical list into a view and I don't want the UINavigationController to be fullscreen.
Other solutions?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个 UINavigationController,然后将其视图定位为其他视图的子视图。例如:
bounds
和frame
属性将确定导航在屏幕上显示的位置。You can create a UINavigationController and then position its view as a subview of something else. For instance:
The
bounds
and theframe
properties will determine where the nav is shown on screen.