ChatGPT解决这个技术问题 Extra ChatGPT

How to prevent UINavigationBar from covering top of view in iOS 7?

After updating to Xcode 5, the navigation bars in all of my app's views have shifted down. Here are some screenshots, the first showing everything in the view as it's pulled down, and the second showing all of it untouched. The search bar should begin where the navigation bar.

https://i.stack.imgur.com/FWDcH.png

Anyone know how I can fix this?

edit: i have tried this previously recommendation:

if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
        self.edgesForExtendedLayout = UIRectEdgeNone;

But it yields very odd results.

https://i.stack.imgur.com/ME8Wc.png

This may be because I have a "slide menu" under this view controller that is appearing due to the transparency of the navigation bar.

Here you are another solution for this issue. stackoverflow.com/a/51491645/10148333

D
Deepesh

Set the navigation bar's translucent property to NO:

self.navigationController.navigationBar.translucent = NO;

This will fix the view from being framed underneath the navigation bar and status bar.

If you have to show and hide the navigation bar, then use

 if ([self respondsToSelector:@selector(edgesForExtendedLayout)])
    self.edgesForExtendedLayout = UIRectEdgeNone;   // iOS 7 specific

in your viewDidLoad method.


I have placed this under viewDidLoad however it yields no changes.
make it in viewDidLayoutSubviews funtions
Appending this to viewDidLayoutSubviews did the trick. I appreciate the help gentlemen!
Hi, Any Question? or is it compliment?
self.edgesForExtendedLayout = UIRectEdgeNone; helped me
I
Irfan

In iOS 7 by defaults all Controller translucent property value is YES, so you set translucent property NO for this issue.

self.navController.navigationBar.translucent = NO;

There is no "navController" property. Use this: self.navigationController.navigationBar.translucent = NO;
i create navigtionbarcontroller object in app delegate and give name navController.
A
Achyut Sagar

You can disable the "Extend edges" in Attribute inspector of View Controller of this screen (as shown in below image) :

https://i.stack.imgur.com/1uleR.png


K
KVISH

This works for swift as well on iOS 8.1

navigationController?.navigationBar.translucent = false

j
jbouaziz

If you want to keep the translucency on your navigationBar, at the end of your viewDidLoad or in your viewWillAppear add this line of code:

[self.view sendSubviewToBack:self.tableView]

Somehow if your scrollView subclass (UITableView, UICollectionView, etc.) is at index 0 in your current view subviews, it will automatically adjust the insets according to your navigationBar. And it shouldn't affect your UI in versions prior to iOS7 either.


EDIT If you initialize your UITableView programmatically, then it is best to add it to the view using this [self.view insertSubview:self.tableView atIndex:0];


This should be the correct answer. If you are adding the subview programmatically you can just do [self.view insertSubview:self.tableView atIndex:0]; instead of sending it to the back after you add it.
Correct. But without knowing how he's initiating his controller (programmatically, interface builder), we can't assume that it is the best solution. Although I've edited my answer.
This works but looks like a hack. Is there any notice in official documentation about this?
M
Md. Najmul Hasan

Swift 4:

Set following line of code in viewDidLoad method:

self.navigationController?.navigationBar.isTranslucent = false

m
malkoty

You can add this method into your view controller as shown on this URL:

-(void)viewDidLayoutSubviews
{
    [super viewDidLayoutSubviews];
    self.searchBar.frame = 
    CGRectMake(0, self.topOfViewOffset, self.searchBar.frame.size.width, self.searchBar.frame.size.height);
}

K
Krivoblotsky

Another approach is to set self.automaticallyAdjustsScrollViewInsets = YES; on your view controller. This is enabled by default. But in your case:

I see you are using EGORefreshHeaderView. It plays with contentInset of UITableView. So when you release it, header will reset top inset instead of restore previous value.


F
Farhad Malekpour

If you want to have complete control on views and avoid faulty adjustments of iOS, subclass UITableView and adjust the insets (both scroll and indicators) in -(void)willMoveToWindow:(UIWindow *)newWindow. Works for me.


I
Irfan

Another option is to open your Info.plist file in source code mode and enter the following info:

<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UIStatusBarHidden</key>
<true/>

Hope this helps.


I don't think this would affect the view at all.