---
title: "Implement Status bar and Navigation Bar on top of UIView"  
description: "Implement Status bar and Navigation Bar on top of UIView"  
author: "zack mathews"  
published: 2015-09-29  
updated: 2015-09-29  
canonical: https://www.mindstick.com/forum/33480/implement-status-bar-and-navigation-bar-on-top-of-uiview  
category: "iphone"  
tags: ["iphone", "ios", "objective c"]  
reading_time: 1 minute  

---

# Implement Status bar and Navigation Bar on top of UIView

My [problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic) is with the [status bar](https://www.mindstick.com/forum/23126/how-to-hide-status-bar-for-universal-apps-in-windows-phone-8-1) and [navigation bar](https://www.mindstick.com/forum/33939/how-to-create-transparent-navigation-bar-in-xcode), I [am unable](https://answers.mindstick.com/qa/95314/how-do-i-access-a-group-link-in-telegram-if-i-am-unable-to-access-the-link) to came both on top of UIView.\
how can i implement both in a proper way, Please help me to over come this problem?

## Replies

### Reply by Tarun Kumar

If you are using translucent [status](https://www.mindstick.com/articles/157184/check-lic-policy-status-online-by-policy-number) bar and a translucent [navigation](https://www.mindstick.com/blog/62/different-navigation-in-asp-dot-net) bar then your problem’s solution is here:\
To set the status bar use:

```
[[UIApplication sharedApplication] setStatusBarStyle:                                   UIStatusBarStyleBlackTranslucent];
```

To set the navigation bar use:

```
theNavigationController.navigationBar.barStyle = UIBarStyleBlackTranslucent;
```


---

Original Source: https://www.mindstick.com/forum/33480/implement-status-bar-and-navigation-bar-on-top-of-uiview

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
