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.

490 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,096
  • 3
  • 38
  • 66
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
  • 479
  • 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
0
votes
0 answers

Displaying custom image for UIBarButtonItem in NavBar (image being covered)

Thanks in advance. I'm having trouble getting my custom buttons to display properly in my navbar. They just end up with the stock iOS5 "Edit" or "Done" or "Back" buttons over it. The weird part the attributes I set to the text and such are showing…
-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
  • 353
  • 1
  • 4
  • 19
-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…
-1
votes
1 answer

NavigationController is nil on pushing VC (simple project created programmatically)

I created simple project with two ViewControllers (ViewController and SecondVC) programmatically. In ViewController I've added a button, which push to SecondVC. In AppDelegate didFinishLaunchingWithOptions I've set ViewController as…
-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
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
  • 408
  • 3
  • 10
-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
  • 995
  • 8
  • 19
-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
votes
4 answers

NSTimer Does not Stop with Navigation Controller

I am New in iOS, In my Project ,i am using NSTimer with Navigation Controller. I used two Classes in my project, Class 1 is ViewController and 2nd Class is PlayTheme. ViewController and PlayTheme Classes are connected with segue. In PlayTheme Class…
1 2 3
32
33