Questions tagged [popviewcontroller]

147 questions
0
votes
2 answers

push and pop controller slow response

I have 3 controllers. I am using push and pop method to change the controllers. [self.navigationController pushViewController:product_subcatagory animated:YES]; [self.navigationController popViewControllerAnimated:YES]; The issue I am getting while…
0
votes
1 answer

button Highlighted not work when interactivePopGestureRecognizer.enabled = YES

Use interactivePopGestureRecognizer when popViewController. Set Custom back button and keep interactivePopGestureRecognizer = YES. - (void)setNavigation { [self.navigationController.scrollNavigationBar setNavigationTitleColor:[UIColor…
xx11dragon
  • 166
  • 1
  • 10
0
votes
0 answers

Change the animation dismissViewController to be equal to the popViewController

In my application I have popViewController and dismissViewController. In some dismissViewController I liked to do animation of popViewController to achieve a consistency between transactions . is it possible?
Pedro
  • 487
  • 1
  • 5
  • 18
0
votes
1 answer

popView from UITabBarController inside UINavigationController

I'm building an application based on the Utility template from Xcode, to which I have added some more views. My application structure would be as follows: MainView (the app menu) Flip-side view (a calculator) UINavigationController Settings view…
0
votes
1 answer

Storyboard - Popping to a View Controller then Pushing Causes multiple pushes

In Objective C / iOS; We have a process similar to this (set up in xcode storyboard); Menu View Controller -> Enter in a code -> Process/Validate -> Present a Failed Code page The (->) arrows signify a push segue setup in storyboard When in failed…
0
votes
1 answer

UITabBarController rotation problem with popViewControllerAnimated and selectedIndex (iPhone SDK)

This is a very important auto rotate issue and easy to reproduce. My application has a UITabBarController. Each tab is a UINavigationController. Auto rotation is handled with normal calls to shouldAutorotateToInterfaceOrientation and…
0
votes
1 answer

iOS 8 : popViewControllerAnimated & popToRootViewControllerAnimated not workring

I am getting one error in iOS 8 in Xcode 6. Just here is the scenario. XCode 6 create new Project "Master-Detail Application" Now I have doing just in detail add one button and in its click event view to Pop Master view but it's not…
0
votes
0 answers

How to make a view pop/disappear from right to left if we press back navigation button?

I have used a custom segue to make a view appear from left to right using: transition.subtype = kCATransitionFromLeft; Now after it have appeared, I want to pop it right to left clicking back navigation button. I have searched and also tried to…
0
votes
1 answer

UITableViewController not redrawing new cell text label after popViewControllerAnimated

I have a problemetic UITableViewController fails to redraw an updated cell after a child view is removed. Here's what's happening. After changing data in a child view, the parent view controller reloads the source data array and runs [tableView…
pchap10k
  • 2,066
  • 2
  • 19
  • 30
0
votes
1 answer

Does the method popViewControllerAnimated: act different than the Back button of the NavigationController?

In my Application i have a container ViewController which is the RootView of an UINavigationController. I transit between various Child ViewControllers through a segmentedControl in the Toolbar of the UINavigationController. One of the Child views…
0
votes
0 answers

Using PushView controller and Popviewcontroller make the app crashes

In My app, I am using push and pop view controller to navigate between UIViewControlers. I have an UIViewcontroller A and UIViewController B. When I click on a button in UIViewcontroller A and use the below code UIStoryboard *storybord =…
0
votes
1 answer

iOS6 Rotation bug with popViewController

I have struggled to find a solution with the many similar questions and answers so I'm going to post my project here My code does the following: 1) Creates a "container" view controller which is actually a scrolling view with 3 pages (left page,…
SparkyNZ
  • 6,266
  • 7
  • 39
  • 80
0
votes
2 answers

iOS7 Crash - PopViewController called on a Landscape ViewController

When I call PopViewController on a landscape ViewController a crash occurs. However when i call PopViewController on a Portrait ViewController a crash doesn't occur. This only occurs on iOS7 - worked fine previously... [self.navigationController…
Fudgey
  • 3,793
  • 7
  • 32
  • 53
0
votes
1 answer

pushViewController only sometimes

I have a button that I have added to my navigation bar programatically. When I pressed this button, sometimes I want it to [self.navigationBar popViewControlleranimated:YES] and sometimes I want it [self.navigationBar pushViewcontrollerAnimated:YES]…
user1529956
  • 735
  • 2
  • 10
  • 24
0
votes
2 answers

Switching from one navigation stack to another navigation stack using popViewController

I have created a module in which i have 5 classes in this i need to perform a task like vc1->vc2->vc3 now from vc3 i used to push vc4 from the reference of a base class. base class is a class on which vc1 controller's is added as a subview. and…
Divyam shukla
  • 2,038
  • 14
  • 18