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

Custom animation for pushViewController

i want to create a custom animation for the animation of the pushViewController using a sequence of images. I have done this up to the point the the currentViewController is covered with the images i want but i don't know if i's possible to reveal…
teo
  • 269
  • 1
  • 5
  • 11
0
votes
1 answer

Display Dashcode Browser in App with SIngle NavBar

How can I display a Dashcode created Browser template in a UIWebView, that the user can dismiss, without having two navigation bars? In the photo below, you'll see that the top bar is part of an Xcode navigation controller with a back button for the…
DenVog
  • 4,226
  • 3
  • 43
  • 72
0
votes
1 answer

Problems with BackButtonItem

Well, I have a NavigationController with a diferent color and I want the back button to also have a background image, a highlighted background image, and a custom text color. How can I do this? I have tried lots of things but I havent been able to…
sergiocg90
  • 489
  • 2
  • 11
  • 24
0
votes
1 answer

How to dismiss a popover with a navigation controller?

I have an app which is divided in four views, when I tap a view the app shows a popover and that popover has a navigation controller. I can navigate between view and the data is shows correctly. But when I am in the last view and I tap a row, the…
Gidrek
  • 1
  • 2
-1
votes
2 answers

RightBarButton doesn't appear but it appears when the ViewController disappear for a second

In my app, the first ViewController appears with right navigation bar items. I want to show different bar items on right side in child VC which is appeared by pushing. The items in the first VC shows fine, but the second doesn't. The bar button…
doori
  • 85
  • 1
  • 6
-1
votes
3 answers

Swift: How to pass data when popping view controller

I want to pass data from childVC to parentVC when popping view controller. ChildViewController { /processing data/ //get data value value = 123 self.navigationController?.popViewController(animated: true) } ParentViewController { //use…
IskandarH
  • 99
  • 1
  • 13
-1
votes
1 answer

How to add next and previous control in the record detail view?

If you will click on any of the record row you will see the details of the record. I wanted to add next and previous button on the details of next/previous row without click on top row. So that user don't have to click again back to top row to view…
Kunal Vijan
  • 425
  • 2
  • 9
  • 28
-1
votes
1 answer

Swift Navigate from third ViewController to the first ViewController

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) { let vc = storyboard?.instantiateViewController(identifier: "PersonViewController") as? PersonViewController …
-1
votes
1 answer

Android Material Stepper Showing Empty View After Navigating Back To The View

i am using Android Material Stepper Library which is working fine for the first time initialization in fragment but when i come back to the fragment it is showing empty view i have tried everything tried to release stepper layout remove all views…
Asad Ali
  • 39
  • 1
  • 9
-1
votes
1 answer

how to dismiss current presenting controller and navigate to other controller using navigation controller?

self.dismiss(animated: false) { let vc = self.storyboard?.instantiateViewController(withIdentifier: "ViewController") as! ViewController self.navigationController?.pushViewController(vc, animated: false) }
-1
votes
1 answer

Value of type 'NavigationController' has no member

I have downloaded this messenger code from a github repository and i have set everything up (from what I'm aware of) such as the firebase and installed the cocoa pops. Everything seems to be running fine except 14 errors which all say the same…
-1
votes
5 answers

Best way to reload vc table view backing from another vc

I'm trying to reload table view in Calculation controller, pressing back navigation button on Setup controller (red arrow on screenshot). Which is the best way to do it? Thanks !
-1
votes
1 answer

How to kill the views of a navigation controller?

i have some navigations controller Navigation Controller 1 Navigation Controller 2 when the user log off (red box), should be back to screen log in (yellow box) two navigation controllers are involved, the first one that is in the red box must die…
Andres Gomez
  • 458
  • 3
  • 12
-1
votes
1 answer

Swift difficulty understanding UINavigationController & navigationController re: presentingViewController

My code works, but I'm trying to understand it. It's a bit of code used to manage a "Cancel" button that can return from either a "Show" segue (presented when user clicks on a table view cell for editing) or a "Present Modally" segue (when the user…
Gallaugher
  • 1,593
  • 16
  • 27
-1
votes
1 answer

Passing a value between a ViewController and NavigationController inside a TapBarController

I would like to pass a bool value from a viewcontroller to navigation controller inside a tabbarcontroller. Because I need to show a different view in accordance to the passed value. By the way I couldn't pass the value through a code below, //…
1 2 3
33
34