Skip to content

Instantly share code, notes, and snippets.

@apisit
Created June 30, 2013 00:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save apisit/5893320 to your computer and use it in GitHub Desktop.
Save apisit/5893320 to your computer and use it in GitHub Desktop.
Remove that 1px line from UINavigationBar in iOS7
[self.navigationController.navigationBar.subviews enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([obj isKindOfClass:NSClassFromString(@"_UINavigationBarBackground")]){
UIView* v = obj;
[[v.subviews objectAtIndex:1] removeFromSuperview];
*stop=YES;
}
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment