skip to Main Content

Xcode 14 UINavigationBar issue

After updating Xcode I see the message in console: [Assert] UINavigationBar decoded as unlocked for UINavigationController, or navigationBar delegate set up incorrectly. Inconsistent configuration may cause problems. And all the data I have in the Navigation Controller scenes are not…

VIEW QUESTION

UITableView cellForRowAt method is not getting executed – Ios swift

extension ArticlesViewController { func setup() { self.navigationController?.navigationBar.prefersLargeTitles = true newtworkManager?.getNews { [weak self] (results) in switch results { case .success(let data): self?.articleListVM = ArticleListViewModel(articles: data.article!) // For testing print(self?.articleListVM.articles as Any) DispatchQueue.main.async { self?.tableView.reloadData() } case .failure(let error): print(error.localizedDescription) }…

VIEW QUESTION
Back To Top
Search