UIpopover 中带提示的导航栏
我有一个导航控制器作为弹出窗口的视图,因此顶部有一个导航栏。
在第一个视图中,没有导航栏提示,因此它保持通常的小尺寸。
然后,我推动下一个视图控制器,该控制器确实需要提示,并且栏会展开(除了视图后面),隐藏“标题”和“后退”按钮。
如果我注释掉 loadView 中的代码,以便永远不会设置 self.view,那么您可以看到后退按钮和标题,但无法单击后退按钮,就好像它位于另一个视图后面一样。
我在3.2中从来没有遇到过这个问题,只有现在在4.2中出现过这个问题
I have a navigation Controller as the view of a popover, so that there is a navigation bar at the top.
On the first view there is no prompt for the navigation bar, so it remains at it's usual small size.
I then push the next view controller which does need a prompt and the bar expands, except behind the view, hiding the Title and Back button.
If I comment out the code in loadView, so that self.view is never set, then you can see the backbutton and title, but you can't click on the back button, as if it was behind another view.
I never had this problem in 3.2, only now in 4.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里,您可以使用以下代码设置弹出框的大小:
您需要使用此代码设置视图中弹出框的内容大小,您可以在控制器的 viewdidLoad 方法中添加此代码。如果您还有任何疑问,请告诉我。
Here you can set the size of popover using the following code:
You need to set the content size of popover in view using this code and you can add this code in the viewdidLoad mehtof of the controller. Let me know if you still have any question.