The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
49 views

Update UItableView in viewWillAppear?

I have problem with my UItableview that when I use viewWillAppear for retrieving updated data each time table is viewed this gives me exception . Please can any one help me on how to refresh ...
-1
votes
2answers
26 views

iOS and xcode: how to create a modal segue to a special view only the first time the app is used

I want to make a "terms and conditions" screen that pops up the very first time that app is opened. On this view I would add a button that says "agree," and upon clicking it the code would execute: ...
1
vote
3answers
80 views

Mechanism about “did” and “will” and “should” method

I want to know generally when the methods including the key words stated in the topic were called. For example: – tableView:willSelectRowAtIndexPath: – tableView:didSelectRowAtIndexPath: - ...
0
votes
2answers
35 views

Omit [super] call when overriding view events in UIViewController. Impact? [duplicate]

What happens if you don't call super in your implementation of the view events (viewWillAppear, viewDidAppear etc.) of UIViewController? It seems like I've forgotten to do this before, and it's ...
0
votes
2answers
65 views

IOS [UITableView reloadData] vs new instance of that UITableView class on ViewWillAppear parent class

Im new to iOS programming and I have created my first app for iPad which handles several views. Since I dont know how memory and objects are managed (The app havent crashed but Im trying to prevent ...
0
votes
2answers
188 views

self.tableView reloadData not working in viewWillAppear

I have an Xcode app that creates a tableview and then populates this with data from an sqlite database, this works perfectly and allows me to push data to a new view and delete etc, This tableview is ...
-1
votes
1answer
56 views

UINavigationController Lifecycle issue with - viewWillAppear: not getting called

I am working through an iOS book and I've been extending an example program for practice when I stumbled into a issue I don't understand completely. I'm currently working with a ...
1
vote
2answers
97 views

NSNotificationCenter with respect to ViewWillAppear and ViewWillDisapper

I have a simple viewController that I want to listen for UIKeyboardWillHideNotification. Therefore I have the following code: - (void) viewWillAppear:(BOOL)animated { [super ...
0
votes
2answers
120 views

Objective-C iOS 6 delegate NSString query

I'm trying to use a delegate to pass a value from one VC to another. I think I'm am misunderstanding the way it is supposed to work. In my main ViewController.h I have this: @protocol ...
1
vote
2answers
57 views

How to stop the UIView from disappearing?

By clicking on the back button, I save the information from the UITextFields of the UIView. When the information in a UITextField is not correct and I click on the back button, I want to open the ...
0
votes
0answers
64 views

View frame changed in the iPhone 3.5" simulator from iPhone 4-inch screen xib

I made a viewcontroller XIB as 4" retina screen and put a custom view at the bottom. And I run the app on the iPhone4 3.5" simulator. My app should be supported on most of iPhone versions, so I set ...
2
votes
2answers
146 views

When to put into viewWillAppear and when to put into viewDidLoad?

I get used to put either of viewWillAppear and viewDidLoad, it's OK until know. However I'm thinking there should be some rules that guide when to put into viewWillAppear and when to put into ...
-1
votes
1answer
76 views

viewWillAppear forces frame y to 0? [closed]

I created a view controller and set its frame.y to 80, later I need to show another modal view controller when the modal VC dismisses, the viewWillAppear of the first view controller is called, then ...
3
votes
1answer
221 views

Different subview layouts in viewDidLoad and viewWillAppear [duplicate]

Possible Duplicate: UIViewController returns invalid frame? While debugging i've noticed that in viewDidLoad call my view frame is origin=(x=0, y=20) size=(width=320, height=460) which is ...
0
votes
0answers
128 views

iOS interface orientation changes inconsistent

Using latest xCode and iOS 6 build target for app is 4.3 As an example my first view is a tableview of 8 rows. User presses 8th row and it pushes the 2nd view which is also a tableView but of 4 rows. ...
0
votes
1answer
69 views

Memory keep increasing even though I set it to nil (screenshot enclosed)

In my ParentViewController I type this: - (void)updateView:(NSInteger)_index article:(AObject *)aObject { UIView *aUIView = [someUIViews objectAtIndex:_index]; // clear view for (UIView ...
0
votes
0answers
69 views

UITextField text being set in viewWillAppear / viewDidAppear / viewDidLoad

When I set a UITextField text property.The value appears in the text field ONLY when I set it in the viewDidAppear method. The value does not appear in the text field when I set it in the viewDidLoad ...
0
votes
1answer
122 views

ViewWillAppear of ParentViewController not called

I am trying to implement a custom UIActionSheet(made up of a ViewController) I have added a View Controller as a subView to the navigationcontroller of my rootView - (IBAction)ShowMenu:(id)sender { ...
9
votes
4answers
2k views

In iOS 6, -[UITextField becomeFirstResponder] doesn't work in -viewWillAppear:

In iOS 5.1 and iOS 5.0 it works, but in iOS 6.0 the keyboard does not show. - (void)viewWillAppear:(BOOL)animated { [super viewWillAppear:animated]; UITextField *textField = ...
0
votes
4answers
90 views

identify the name of previous UIView

I was wondering if it possible to find which view called the following function - (void)viewWillAppear:(BOOL)animated { //find here the name of the calling view } Is there any way to find which ...
0
votes
3answers
116 views

Viewdidload working, while viewwillappear is delayed

I have a project in which I'm switching one view with another: - (IBAction)onClick:(id)sender { ViewControllerSecond * sc=[[ViewControllerSecond alloc]initWithNibName:@"ViewControllerSecond" ...
0
votes
1answer
40 views

Taking Screen Shot of App to Use During Animation

I'm trying to cover up some changes that take place in my view during the transition between viewWillAppear and viewDidAppear and would like to take a screen shot during or immediately before ...
0
votes
2answers
102 views

How to interrupt viewWillAppear hierarchy

I have a rootViewController, in it's viewDidLoad method, I initialized another two ViewController2* object and their views as subview of rootViewController.view, then I set first ViewController2* ...
2
votes
3answers
384 views

Toolbar items dissapear when view changed with UIActionSheet

When initiating a view from a UIActionSheet button, upon returning to the view via the navigationBar back button, the toolbar while still visible does not have any of the buttons that were previously ...
0
votes
2answers
315 views

viewWillAppear not firing ever again after app enters foreground [closed]

When i enter foreground after viewWillAppear didn't be call can any one guide me how could i fire my viewWillAppear method after foreground Thanks for advance
0
votes
0answers
82 views

iOS - Navigation Controller vs Modal Controller operation

I am seeing some inconsistencies in one of my application views depending on whether the view is access from a modal view controller, or a view controller on the navigation stack. Example: From a vew ...
0
votes
0answers
119 views

How do I get a view controller to rotate its view before it is displayed by a view transition?

I have a root view controller with code that configures the positions and sizes of subviews in -viewWillAppear:. There is another mode to the app where this view controller (self) is replaced with ...
0
votes
4answers
193 views

iPhone viewwillappear on application entering foreground

I have an application where there are 3 tabs to calculate distance and all. When I first launch the app, on clicking 3 rd tab some network call is happening. Now I put the application to background. ...
0
votes
1answer
47 views

execute code in viewwillappear once

I have a few line of code in viewwillappear method. I want to execute this code only once. How can i do this. However this code is inside a loop. CALayer *myLayer = btn.layer; ...
-1
votes
1answer
249 views

set UIView Frame in viewDidAppear, to solve frame issues in iPad for Launch orientation mode Landscape

I am launching my app (iPhone and iPand) in landscape mode. I found that frame for iPad frame changes in viewDidAppear , than the one in viewWillAppear. IOS IPAD 5.1 simulator In viewWillAppear ...
4
votes
1answer
702 views

viewwillappear and viewdidappear not called

this question is very frequent, but I am not able to solve it with any answers available. I am working on iOS 5.1. My navigation controller is one tab amongst tab bar view controllers. There's a ...
1
vote
0answers
175 views

viewWillAppear method not being called after popToRootViewController

I have a view controller,that is a UINavigationController, that at some point pushes (navigationcontroller pushViewController: animated:) a second view that later pushes a third view where I have a ...
0
votes
1answer
93 views

iOS5:How viewWillAppear/viewDidAppear/viewDidAppear/ect. methods are created?

I was doing some iOS 5 tutorials and in several tutorials, it says things like "Add at end of viewWillAppear" or "Modify viewWillDisappear" in MasterViewController.m but in my project, ...
2
votes
1answer
3k views

viewWillAppear, viewDidAppear not called with pushViewController

NewViewController_iPhone *newViewController = [[NewViewController_iPhone alloc] initWithNibName:@"NewViewController_iPhone" bundle:nil]; [self.navigationController ...
1
vote
1answer
524 views

didDeselectRowAtIndexPath not called after viewWillAppear in UITableViewController

I'm using a UITableViewController subclass with clearsSelectionOnViewWillAppear set to YES (the default value). How do I make changes to a deselected cell when it is automatically deselected on ...
0
votes
0answers
114 views

Animation in viewWillAppear interferes with launch rotation

I have a simple animation in viewWillAppear that vertically positions some elements in my view - it makes some elements slide down into place. It all works well, except when the application is ...
0
votes
1answer
389 views

popViewControllerAnimated affects viewwillappear?

I have two classes. lets say A,B Classes. from A class pushviewController is called, then B class will appear. Then here is the problem .when i call popviewcontrolleranimated method from B class it is ...
0
votes
1answer
386 views

How do I make appDidBecomeActive show the view of rootViewController?

I have a UIImageView on top of my rootViewController (I'm using the storyboard only by the way) and I want my app, whenever it comes from sleep, to show that view on top of rootViewController. After ...
0
votes
1answer
116 views

Change Tab view after certain time interval received as response from Server request

In an application having UITabBarController, I want to implement following scenario: When user is on 'X' Tab, he/she does something & then move to another tabs. And again he/she comes back to 'X' ...
-3
votes
1answer
95 views

How do IOS know which viewController is being viewed and hence need viewWillAppear to be called

How does iOs know? Does each view has a pointer to it's controller? What happened? When we pop a viewController from navigation, does the navigationController arrange which view should be called? ...
0
votes
0answers
26 views

delegate method hides a button

I am trying to tell a sourceView to hide a button since the user confirmed his registrated in a second View. So I created a proper delegate with a "hideButon" method delegated in a protocol. It ...
1
vote
1answer
204 views

iOS specific behavior when switching views

I'm seeing a weird problem related to subview methods getting called that appears to be iOS version specific. I have two swappable views with parent view controller than determines which one will ...
0
votes
1answer
262 views

Switch View with animation

I must change a view. In a view I've a button with this code: FormazioneViewController *formazioneC = [[FormazioneViewController alloc] initWithNibName:@"FormazioneView" bundle:nil]; ...
0
votes
2answers
1k views

Wrong value for statusBarOrientation on viewWillAppear

I need to change the image background of a View depending on the orientation. For this, I am using the statusBarOrientation approach in viewWillAppear: - (void)viewWillAppear:(BOOL)animated { ...
0
votes
1answer
345 views

Navigationbar not showing on pushing view controller

I have working on navigation base application. my problem is that when i am push other view controller into navigation controller .view controller viewWillAppear is not called. TestCategoryHistory ...
1
vote
2answers
282 views

viewdidload issue xcode 4.2

i just learn how to change switch between views with push and pop. now, to my second view i add a label witch i wand to change her value every time my second view is push. i add the label, connect her ...
1
vote
0answers
614 views

viewDidAppear and viewWillAppear not getting called on the iPad

I am calling a settings page as a form sheet over a viewController using the following code: NSUserDefaults *standardUserDefaults = [NSUserDefaults standardUserDefaults]; NSString *device = ...
0
votes
1answer
312 views

UIButton setBackgroundImage and viewWillAppear

Ok guys I got a problem with UIButton, maybe that´s simple to solve. I have a button with an IBAction toggleMusic which changes the background image. -(IBAction)toggleMusic{ if ...
1
vote
4answers
315 views

NSArray from one view controller become NULL when using at viewWillApper method of another view controller?

i have a problem while calling NSArray from another view controller, solution may be simple but as a beginner i am confused. here is my problem, i am tryiin to send an array from my ...
0
votes
2answers
644 views

popViewController animated:YES not animating

I have a download button in my view and when the button is clicked, the app opens the app store with [[UIApplication sharedApplication] openURL] However when I switch back to my app, I find that the ...

1 2 3