I am very new to iOS / Objective C programming.
The flow of events I want to execute is this: the user selects a tab from the tab view controller of the tab bar. After downloading VIEW A, it will open a modal window to get some information
VIEW A - (void) viewDidLoad
ModalYearPickerViewController *modalYearPickerViewController= [[ModalYearPickerViewController alloc] init]; [self presentViewController:modalYearPickerViewController animated:NO completion:nil];
I try to have my order picker load immediately, so the user can select the year from my picker (in VIEW B), and then close the modal window after the value has been returned back to VIEW A.
Now the fist view is loaded, then it automatically switches to the black screen. I am not sure why, since my view controller for modalYearPickerViewController has a collector, etc.
Any advice or help on downloading the software management module would be greatly appreciated!
Thanks!
source share