Questions tagged [navigationcontroller]

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NavigationController is about this flow.

A Controller in a MVC (Model View Controller) pattern provides the execution flow of the application. NagigationController is about this flow in a technology that can apply the MVC pattern.

507 questions
0
votes
1 answer

Leftover view caused by wrong UIViewControllerAnimatedTransitioning animation

Using Xcode-10.2.1, iOS-12.3, Swift-5.0.1, I have a strange problem with an unknown background-view when using custom UIViewControllerAnimatedTransitioning animations ! The problem is that whenever the custom-transition happens, there is a coloured…
iKK
  • 6,394
  • 10
  • 58
  • 131
0
votes
1 answer

Swift: Pass data from a view controller to a navigation controller

I want to pass data from a view controller to another but I've a Navigation controller between them, so there's a "present" function instead a "performSegue". private func IniciarMainAdmin(){ let mainAdmin = UIStoryboard(name: "Main", bundle:…
0
votes
1 answer

prefersLargeTitles not working as expected when used with a UITableView added to a subview

I am currently using two viewControllers to design the following layout presented. It is constituted by a MainController defined in the Storyboard with only a view as a subview, and a programmatically added CustomController to this subview that…
DanielDC
  • 1
  • 3
0
votes
1 answer

asp.net breadcrumb

I am having a problem with the breadcrumbs - when I use the breadcrumb to move back in the breadcrumb to the previous node in the sitemappath control is there way to store the data. is there a way around this? thanks
kt87
  • 51
  • 1
  • 3
  • 8
0
votes
1 answer

How to access to navigationItem when I am in a view controller in tabBar?

I have view controllers in a tabBar. And the tabBar is in navigationController. I want to access to navigationItem when I am in a view controller in tabBar. Usually, when I set a navigationItem's title, I used to doing this. (if I am in a…
MonsterK
  • 565
  • 1
  • 6
  • 12
0
votes
1 answer

How to fix navigation inside MvxTabViewController for IOS in Xamarin mvvmcross project?

Inside my application I have LoginView and after that MainView which is MvxTabBarViewController with two tabs. Here is my code for MainView: public class MainView : MvxTabBarViewController { private bool _constructed; …
0
votes
1 answer

iOS Personal Hotspot makes Navigation Controller Broken

When my personal hotspot is active, my Navigation Controller becomes broken like attached image. I tried full screen presentation on my NavigationController in storyboard; But it doesn't work. curropted one correct one
0
votes
3 answers

How telegram app make smooth animation when swipe back?

when telegraphing when swapping backwards, a soft transition still turns out, I will be glad for any help video
Dima
  • 61
  • 1
  • 4
0
votes
1 answer

new view animated and overlapping tabbar

i have a tabbar and in one viewController there is a button. When the user presses the button, i would like to let a view of a navController with a tableView as rootView appear animated. but there is a small empty stripe above the…
0
votes
1 answer

NavigationController nested in TabController animation bug

I try my best to explain what is happening. I have updated the XCode to Version 10.1 (10B61) And the iOS on my iPhone and Simulator is v12.1 My app has a TabController with 5 tabs. First: Posts Fifth: Profile Posts These are embedded into a…
Kárpáti András
  • 1,221
  • 1
  • 16
  • 35
0
votes
1 answer

Passing data between stacked views

In my app, I've several views.. and some of these views are pushed and popped using the navigation controller. In some view, I have a table view, in which each one of its cells is a view itself, so when the cell is selected, this code is executed…
ObjProg
  • 429
  • 1
  • 7
  • 19
0
votes
1 answer

Problem with video on NavigationController + TabBarController

I have an application with a TabBarController containig two TabBars with a NavigationController. In the first tabbar, I have a ViewController containing some buttons. One of these buttons enable the user to play video. And all run fine for the…
hafedh
  • 539
  • 1
  • 9
  • 26
0
votes
1 answer

Could not cast value of type to UINavigationController swift3

I'm getting the following cast error (when I click on the "+" button in the simulator [NavigationController]) and can't figure out why. I'm using Swift3. Thanks for your help! MainVC.swift protocol AddTaskDelegate: class { func…
0
votes
1 answer

Cannot pass data to viewController

I have two arrays to store area name and website address as string. In addition, I have 9 area buttons. When you press one of the buttons, it will show a different picture depend on the area button you press. here is my code: @IBAction func…
Penny Chen
  • 79
  • 1
  • 10
0
votes
1 answer

Swipe to pop View Controller in Swift

I'm using the Slide menu controller pod in my project and have a little problem. When there are controllers in navigation stack and I want to swipe left, the burger menu appears instead of popping the contorller. How could that be changed? Could…