Questions tagged [popviewcontroller]
147 questions
0
votes
3 answers
Viewdid load method call on popview
In my application i set some animations in View1's view load() ,At first launch its working propely,if im pushed into otherview ,and while pop into view1 its not animating,What shoud i do for animate while pop view from other view?here my view did…

iosdev
- 277
- 8
- 19
0
votes
1 answer
Modifying UINavigationController corrupts navigation stack
I've got a standard UINavigation controller and push my screens with push and pop as normal. However, i have one screen that switches between two view controllers on a button press so the screen flips over top reveal the other viewcontroller and…

d0n13
- 942
- 7
- 20
0
votes
1 answer
popViewController to a UIViewController initialized with a UIStoryboardSegue
I have a list controller that fires a performSegueWithIdentifier to load a detailViewController of the item that was selected. To initialize the detailViewController I set a property on it in the prepareForSegue that gets called before the…

Wolfsokta
- 71
- 4
0
votes
2 answers
popviewcontroller from view 2 causes view 1 to stop animating its background
Really weird issue, i've got a view (view 2) that i'm popping to bring up my main view (view 1) which has an animated background. Once i pop from view 2, view 1 loses those animations... the weird thing is that moving the iOS status bar in the…

LarryFisherman
- 322
- 2
- 11
0
votes
1 answer
how to control an outlet from another uiviewcontroller
been trying to solved this for 3 days straight, but still nothing.
so i want to control the alpha of an uiview using a slider inside a popview that appear from a rect button(button pressed)
so here what i already did,
mainview .h file :
@class…

redribbon
- 41
- 1
- 10
0
votes
3 answers
how to call a function from mainview when poping
This might be asked a few time already, how do i call a function when poping back ?
NSlog show the text but nothing shows on the view after popping.
list pop to table but the image are not showing
DrinkListViewController
DrinkTableViewController…

Desmond
- 5,001
- 14
- 56
- 115
0
votes
1 answer
What would be best manner to push viewcontroller from right using UInavigationcontroller?
I was wondering how to push a viewcontroller using the UINavigationtionController but from left side.
For now I know two ways
1) Using UIAnimations...
2) Using pop the viewcontroller rather than pushing!
Well its seems like when application has…

Zahur
- 181
- 3
- 10
0
votes
1 answer
UINavigationController animation
I have a tabBar app with two tabs. Each tab has its own navigationController implemented this way:
FirstViewController *firstController = [[FirstViewController alloc] initWithNibName:@"FirstViewController" bundle:nil];
UINavigationController…

sergiocg90
- 489
- 2
- 11
- 24
-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
I want to pop from viewContoller to parent viewController with out code
I want to pop from childviewContoller to parentviewController in storyboard with out write any code in file with the help segue.
Thank You in Advance.

Pramod Tapaniya
- 1,228
- 11
- 30
-1
votes
1 answer
How to push to detail view controller on button click by didselectrow manually; get back again and then push as count of data source array?
I have a uitable view and I want to perform didselectrow manually on button action; then next view controller is pushed. Take their a screen shot and get back. Again perfom this action till data source counts?
Any sample logic or objective c code ?…

user3807662
- 1
- 3
-1
votes
1 answer
Pop view from UINavigationController many times cause app crashes
There is an item details screen where user can read all info about a selected item, and there is also an search bar in this screen where user can search for items then when they choose one, it will be displayed, because of complexity data, so I have…

Son Nguyen
- 3,481
- 4
- 33
- 47