UIView under UINavigationBar on IOS7

﹥>﹥吖頭↗ 提交于 2019-11-29 00:43:10
Jageen

Regarding
1.The UIToolbar and UISearchBar is not visible any more write the below code in viewDidLoad and your problem will solved.

[self setEdgesForExtendedLayout:UIExtendedEdgeLeft | 
                                UIExtendedEdgeBottom | 
                                UIExtendedEdgeRight];
  1. In viewDidLoad this worked for me

    [self setEdgesForExtendedLayout:UIRectEdgeNone];

  2. If you like storyboard, select the viewController and make sure Extended Edges >> Under top bars is not selected.


Update: For people like me, who can't install Xcode 5 available only in Mountain Lion:

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 70000
    [self setEdgesForExtendedLayout:UIRectEdgeNone];
#endif

Regarding 2. We integrated the UIRefreshBar component and after refresh the UITableView always move under the UINavigationBar

Make the NavigationBar not translucent, by default it is which allows views to scroll underneath it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!