---
title: "How to reload a View Controller"  
description: "How to reload a View Controller"  
author: "Anonymous User"  
published: 2015-11-23  
updated: 2015-11-23  
canonical: https://www.mindstick.com/forum/33624/how-to-reload-a-view-controller  
category: "iphone"  
tags: ["iphone", "ios", "objective c"]  
reading_time: 1 minute  

---

# How to reload a View Controller

I am using two view [controllers](https://www.mindstick.com/forum/155773/how-asynchronous-controllers-work-in-asp-dot-net-mvc), I want to [reload](https://www.mindstick.com/forum/224/title-reload-assembly-to-extend-with-new-types) first [view controller](https://www.mindstick.com/forum/33709/how-to-use-table-view-controller-with-small-sized-in-ios) to display some information (remember that first view is not a [table view](https://www.mindstick.com/forum/33654/send-table-view-cell-value-on-button-action-in-ios)) after the [update](https://www.mindstick.com/forum/156353/what-is-hummingbird-update) call is done.

So, how can I reload first view controller, can any one [advice](https://yourviews.mindstick.com/view/50528/filament-advice-5-things-to-consider-before-you-buy-a-filament) me please.

## Replies

### Reply by Tarun Kumar

If you are updating your database and want to refresh [View](https://yourviews.mindstick.com/view/84701/layoffs-in-google-india-2023-view) [Controller](https://www.mindstick.com/blog/273/passing-values-from-controller-to-view-in-asp-dot-net-mvc) that are displaying data from database, you can use this code:

```
[self viewDidLoad];
```

and remember that, if you are overriding other viewWillAppear or loadView them as like this:

```
[self viewDidLoad];[self viewWillAppear:YES];
```


---

Original Source: https://www.mindstick.com/forum/33624/how-to-reload-a-view-controller

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
