查看导航栏的偏移量
我设置了一个地点配置文件,可以在笔尖中显示地点信息。当我将此视图推入标准屏幕流程时,它工作正常。但是,当我从另一个选项卡推送此视图时,UINavigationBar 似乎会偏移它,请在此处查看图像 - http://imageshack.us/photo/my-images/525/screenshot20111006at225.png/ 我认为这可能是导航栏覆盖视图,但我不知道如何纠正这个问题。
I have a place profile set up that displays place information in a nib. When I push this view in the standard screen flow it works fine. However when I push this view from another tab the UINavigationBar seems to offset it please see image here - http://imageshack.us/photo/my-images/525/screenshot20111006at225.png/ I think it may be the navigation bar going over the view however I'm not sure how to correct this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要手动更正,请将
self.view.bounds
设置为特色视图的viewWillAppear
或viewDidLoad
(如果您使用手动坐标,viewDidLoad
很好,但我认为如果您使用self.navigationController
的部分(例如navigationBar< 的位置),则需要
viewWillAppear
/代码>)。例如:To manually correct, set
self.view.bounds
to the right co-ordinates in your featured view'sviewWillAppear
orviewDidLoad
(if you use manual coordinates,viewDidLoad
is fine, but I think you needviewWillAppear
if you're using parts ofself.navigationController
like the position ofnavigationBar
). For example: