Tagged Questions
The viewdidappear tag has no wiki summary.
5
votes
3answers
7k views
Do I programatically add SubViews in ViewDidAppear, ViewDidLoad, ViewWillAppear, the constructor?
I'm trying to figure out from Apple's sketchy documentation which method is the best place to be initializing and adding my Views controls to the controller's view.
With winforms it's fairly ...
3
votes
4answers
142 views
viewDidAppear called twice in iOS5
I'm developing an app with an UINavigatorController. I am using the method viewDidAppear in the second pushed viewController to find information in an external server.
Well. While in iOS5 worked fine ...
2
votes
3answers
81 views
UIViewController viewDidAppear - because it was pushed or because subview was popped?
In my app, I have about a dozen different view controllers, pushed onto or popped from the stack in different orders. When a view has appeared (I'm using viewDidAppear method) I need to determine ...
2
votes
2answers
410 views
iOS Root View Controller's viewDidAppear: called while splash screen (Default.png) still on screen
In my iOS app I want to run a series of operations in my Root View Controller after it has already appeared on the screen. However, it seems that the iOS app is calling viewDidAppear while the splash ...
2
votes
1answer
117 views
AVAudio Won't Stop after Presenting Modal View
I have an application that displays movies. The first screen shows buttons that present different modal views. Inside those modal views are buttons that play videos.
I want the main menu to play ...
2
votes
1answer
980 views
Xcode - UILabel is not changing value on viewDidAppear
Hey everyone, I have a iPhone App I am creating. It uses a uitableview and that goes to a detail view.
Now on the detail view I have a scroll view, and all the data (XML) comes into it fine, each ...
2
votes
2answers
588 views
Why does viewDidAppear in UITabBarController exec before the view appears?
I have a UITabBarController that nests a UIView-Subclass (ImageViewer) as it's third tab.
In this ImageViewer Subclass I call the viewDidAppear method:
- (void) viewDidAppear:(BOOL)animated {
...
2
votes
2answers
479 views
Android's viewDidLoad and viewDidAppear equivalent
Does Android have an equivalent to Cocoa's viewDidLoad and viewDidAppear functions?
If not, then how would I go about performing an action when a View appears? My app is a tabbed application, in ...
2
votes
3answers
3k views
How to add an animation to the UIView in viewDidAppear?
I tried to add a animation to viewDidLoad and viewDidAppear, but it doesn't work:
- (void)viewDidAppear:(BOOL)animated{
[UIView beginAnimations:@"transition" context:NULL];
[UIView ...
2
votes
3answers
4k views
UIImagepickerController [takepicture] modal view disappears no delegate callback
Update:
This has been answered. It was my own stupidity, possibly not worth reading any more of this question. lol.
Question:
Right so i have this UIViewController(master) subclass, it has a ...
1
vote
0answers
70 views
Overriding viewDidAppear: method
I would like to override viewDidAppear: method in category to get in console current view controller.
#import "UIViewController+Additions.h"
@implementation UIViewController ...
1
vote
2answers
62 views
iOS: Running database query in viewDidLoad only works once
So let's see if I can write a clear enough description of my problem...
I'm developing an application for a museum, where the user can find artworks either through an id or by scanning a qr tag...
...
1
vote
1answer
151 views
performSelector:withObject:afterDelay in viewDidAppear is not working when app launches
I have to move some code from viewDidAppear to a new selector to fire after 0.1f seconds.
So I have done something like:
-(void) viewDidAppear:(BOOL)animated{
[self ...
1
vote
4answers
246 views
iOS - viewDidAppear: delayed when showing a UITableView
I'm having a weird problem. I have a Tab Bar application, in it I'm using a Navigation Controller for each of the different tabs and each Navigation Controller has it's own View Controller to display ...
1
vote
1answer
312 views
UIViewController resizing itself between viewWillAppear and viewDidAppear?
I've got a really strange bug in my project. I've got a UIScrollView as my main, big view. Inside of it, I have a UIViewController (not UITableViewController) which has a UITableView instance ...
1
vote
2answers
463 views
viewDidAppear for subviews
I want to load some data when a button is pressed and show a "loading view" as a subview of my current view while it's loading.
So I want to start loading only after the subview did appear. If not ...
1
vote
1answer
798 views
Coding custom SplitViewController - when should I call viewWillAppear, viewDidAppear, etc…?
I'm writing my own SplitViewController from scratch (i.e. by subclassing UIViewController and not UISplitViewController).
It has two sub-viewControllers (one for the left panel and one for the detail ...
1
vote
1answer
2k views
Activity Indicator display in Table View whilst row data is being fetched
I am navigating from tableview1.row to a tableview2 which has a LOT of rows being fetched. Given the load time is around 3 seconds, I want the navigation to slide into tableview2 as soon as the ...
1
vote
1answer
1k views
How can I call the ViewDidAppear only one time?
When the user start the app I want it show the stockholm.xib
and It does here:
-(void)viewDidAppear:(BOOL)animated{
[super viewDidAppear:animated];
NSUserDefaults *startPage =[NSUserDefaults ...
1
vote
2answers
1k views
viewDidAppear Not Firing in Tabbarcontroller>NavigationController>UITableView
I currently have a tab bar controller set up with a navigationcontroller on one of the tabs, then I have a UITableView nib set up for that Navigationcontrollers view. All of this has been set up ...
1
vote
4answers
2k views
Correct time to call viewDidAppear manually?
I have a UITableViewController in my app, which is added to the view hierarchy directly. After the view appears, I want to scroll to a specific cell. My solution would be to call the code for ...
0
votes
1answer
78 views
ViewDidAppear doesn't work when i call it in iOS 4.3?
I have a UITabBarController that include four UIViewController and when i want call viewDidAppear it doesn't work. I don't why this happens just for iOS 4.3?
//
UINavigationController *nav3 = ...
0
votes
0answers
63 views
iPad app won't start in landscape orientation
I'm converting an iPhone app to universal app so it will run on both iPhone and iPad devices.
I've got most of the app working nicely, but I'm having trouble getting the iPad app to launch in ...
0
votes
2answers
104 views
Non-Existent View Controller getting viewDidAppear called
I have a navigationController that I reuse for my Splash screen. Whenever I log out, I reset the navigationController's viewControllers array to just the single Splash screen. However I'm getting ...
0
votes
1answer
85 views
How to upload uiviewcontroller after [self dismissModalViewControllerAnimated:YES];
i have an uiviewcontroller which save some NSString in NSUserDefault. When i go back in this way
-(IBAction)goBack:(id)sender{
[self dismissModalViewControllerAnimated:YES];
[self ...
0
votes
0answers
53 views
How to reload a uiview called with [self.view removeFromSuperview]
i have a problem. I have a viewController which has an uiview with some uibutton. At the first load this uibutton must have an image choose from users. This image is choosen in the next uiview ...
0
votes
2answers
179 views
ViewDidAppear is not called in tab bar based app
I have a problem. I am working on an app which is tab bar based app. In this app, we call [self.view addSubview:newVC.view] when we want to navigate to a new view. newVC is the view controller of the ...
0
votes
1answer
332 views
Guidelines for viewWillAppear, viewDidAppear, viewWillDisappear, viewDidDisappear
Are there any guidelines for using these methods in the right manner? In particular, I would like to know what type of code I could use inside them.
For example, if I have to call a method that ...
0
votes
2answers
117 views
Objective C: Triggering IBAction showInfo in viewDidAppear
I created my app using Utility Application template in Xcode 4.
I want my app to display the flip side on the first launch so that the user can enter a URL.
In my mainViewController I have:
- ...
0
votes
1answer
161 views
UIWebView: where to load request in tab screen? viewDidLoad or viewDidAppear?
I have a tab bar controller, one tab screen contains a web view, loading a request say google.com, when it is loading(ie before the didload delegate method call of webview), if I switch to another tab ...
0
votes
1answer
271 views
iOS - Grand Central Dispatch, viewWillAppear, viewDidAppear order of execution confusion
I'm using GCD for background downloading in my Tab Bar app.
First step is to do some background downloading in -viewWillAppear: (to setup some basic data before the view is loaded).
Second step is ...
0
votes
3answers
219 views
iOS different output whether running in simulator or on device
I yet again have a super weird problem. I get different outputs whether I'm running the application on the simulator or on the iPhone.
See these console logs:
iPhone First run, first career cell ...
0
votes
0answers
110 views
ABPeoplePickerNavigationController reload/refresh contact list
I REALLY need some help. its over a week that i am looking for this with no success.
I built a tab bar application and on my "Contacts" tab, i call the ABPeoplePicker...controller
anyway, when i ...
0
votes
1answer
779 views
viewDidAppear called BEFORE it actually appears?
I know that this question sounds similar to this, but I am already aware of the work around. This is more of an analysis question.
The above link is a question specific to UITabBarController, but I ...
0
votes
1answer
352 views
Trouble with Displaying an Activity Indicator while Data Loads
I feel as though there is a really simple solution to my problem, but thus far I have had little success... I want to load my initial .xib file (exiting the default.png splash screen early), so that ...
0
votes
1answer
389 views
viewDidAppear not being called after pushViewController
I am writing an app that pulls information from a database, displays in a table, and allows the user to get details by selecting an item from the table. Whenever the table updates, the values in the ...
0
votes
1answer
361 views
(iphone) How do I show activity indicator when there's heavy UI update?
I tried to show activity indicator while heavy UI update.
My initial failed attempt was
show activity indicator at view1
pushViewController (creating view of this viewController takes a ...
0
votes
3answers
353 views
Load data after viewDidLoad
I have a viewController that requires I load a whole series of images and display them on the screen, but loading those images in viewDidLoad takes a while and there is a delay before the view appears ...
0
votes
2answers
402 views
Why viewDidAppear/viewWillAppear don't get called in a nested structure?
Please help, if you have any experience, our time is thicking.
I have this structure.
AppDelegate...
...Owns a _root ViewController (its view added to window)
...what owns the _main ViewController ...
0
votes
1answer
245 views
why my view controller not call the - (void)viewDidAppear:(BOOL)animated method?
I want to do something in the viewDidAppear method but this method not auto calling the SDK
describe this method is Notifies the view controller that its view was added to a window. if means implement ...
0
votes
1answer
379 views
willAnimateRotationToInterfaceOrientation being called BEFORE viewWillAppear
I just tracked down a crash I was having in my iOS app and it is related to willAnimateRotationToInterfaceOrientation being called before viewWillAppear.
I have an app with two views. Basically, when ...
0
votes
1answer
394 views
viewDidAppear not called
I have added tabbarcontroller, setViewControllers used for providing array of uiviewcontroller. viewDidLoad is called for this viewContollers but not viewDidAppear neither viewWillAppear.
the code I ...
0
votes
1answer
99 views
ActivityIndicator not showing during NSXMLParsing
i'm about to write a simple App where in one UIView (called via TabBar) a RSS-Feed is loaded from a URL and parsed to show the Feed-Entrys in a Simple UITableView.
Within this UIView i created a ...
0
votes
1answer
388 views
Call Function in Underlying ViewController as Modal View Controller is Dismissed
I have a mainViewController. I call [self pushModalViewController:someViewController] which makes someViewController the active view.
Now I want to call a function in mainViewController as ...
0
votes
1answer
648 views
UIViewController's viewDidAppear not being called after a modal close
A UIViewController (View A) invokes another view controller (View B) by invoking it as a modal control.
[self presentModalViewController:ViewB animated:TRUE];
And View B exists by invoking:
[self ...
0
votes
1answer
749 views
Difference between viewDidAppear, viewDidLoad in iPhone?
Bottom line is, I've been working on an app, and it seems that if I place a UIAlert in viewDidLoad, it gets called twice (from a delegate method of UIImagePickerController). If I put it in ...
0
votes
3answers
319 views
viewDidAppear, but where is viewDidShowToUser?
I have an iphone3g with this function running in my ViewController
- (void)viewDidAppear:(BOOL)animated {
[super viewDidLoad];
}
I use a TabBar iphone app. But when I click from tab 1 to tab 2 ...
0
votes
0answers
35 views
Iphone: manually adding components doesn't show up - where do I put this code?
I am pushing a new view controller called SecondViewController from my FirstViewController.
I have a method called build2ndView which I call on my view SecondViewController and it adds a bunch of ...
0
votes
3answers
144 views
with “viewDidLoad” my viewController take much time to appear!
when i load my viewController i used "viewDidLoad"method to init my view ,but this take much time to make the view appeared .So i had the idea to use "viewDidAppear" method to accelerate the ...
0
votes
1answer
697 views
iphone ViewDidAppear in SubViews?
I have a View "A", which loads a subview "B" which loads a subview "C"
Why does the ViewDidAppear event fire for "A" but not for "B" or "C"
ViewDidLoad does fire for A,B,C