Search code examples
iosxcode10swift4.2

reload tableView from Another ViewController Swift 4.2


when i am trying to call method from another VC reloadData() then the app crash Fatal error: Unexpectedly found nil while unwrapping an Optional value due to tablview nil how can resolve it.

FavoritesFiltersViewController.shareInstance.reloadData()

enter image description here


Solution

  • Thanks for every one.Finally after a R&D. i found the following solution. and its working fine.

    let fav:FavoritesFiltersViewController! 
     fav.reloadData()