Я получаю странное поведение с presentViewController:animated:completion
. То, что я делаю, - это, по сути, игра с угадыванием.
У меня есть UIViewController
(frequencyViewController), содержащий UITableView
(frequencyTableView). Когда пользователь нажимает на строку в вопросеTableView, содержащую правильный ответ, представление (correctViewController) должно создаваться, и его представление должно скользить вверху снизу экрана в виде модального представления. Это говорит пользователю, что у них правильный ответ, и сбрасывает частоту ViewController позади нее, готового к следующему вопросу. correctViewController отклоняется нажатием кнопки, чтобы показать следующий вопрос.
Это все работает правильно каждый раз, и представление правильногоViewController появляется мгновенно, пока presentViewController:animated:completion
имеет animated:NO
.
Если я установил animated:YES
, correctViewController инициализируется и вызывает вызовы viewDidLoad
. Однако viewWillAppear
, viewDidAppear
и блок завершения из presentViewController:animated:completion
не вызываются. Приложение просто сидит там, пока показывается frequencyViewController, пока я не сделаю второй ответ. Теперь вызывается viewWillAppear, viewDidAppear и блок завершения.
Я исследовал немного больше, и это не просто другой кран, который заставит его продолжить. Кажется, если я наклоняю или встряхиваю свой iPhone, это также может привести к запуску viewWillLoad и т.д. Это похоже на то, что он ждет любой другой бит пользовательского ввода до того, как он будет прогрессировать. Это происходит на реальном iPhone и в симуляторе, что я доказал, отправив команду shake на симулятор.
Я действительно не понимаю, что с этим делать... Я бы очень признателен за любую помощь, которую любой может предоставить.
Спасибо
Вот мой код. Это довольно просто...
Это код в вопросеViewController, который выступает в качестве делегата в вопросеTableView
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row != [self.frequencyModel currentFrequencyIndex])
{
// If guess was wrong, then mark the selection as incorrect
NSLog(@"Incorrect Guess: %@", [self.frequencyModel frequencyLabelAtIndex:(int)indexPath.row]);
UITableViewCell *cell = [self.frequencyTableView cellForRowAtIndexPath:indexPath];
[cell setBackgroundColor:[UIColor colorWithRed:240/255.0f green:110/255.0f blue:103/255.0f alpha:1.0f]];
}
else
{
// If guess was correct, show correct view
NSLog(@"Correct Guess: %@", [self.frequencyModel frequencyLabelAtIndex:(int)indexPath.row]);
self.correctViewController = [[HFBCorrectViewController alloc] init];
self.correctViewController.delegate = self;
[self presentViewController:self.correctViewController animated:YES completion:^(void){
NSLog(@"Completed Presenting correctViewController");
[self setUpViewForNextQuestion];
}];
}
}
Это весь правильный_контроль
@implementation HFBCorrectViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
{
// Custom initialization
NSLog(@"[HFBCorrectViewController initWithNibName:bundle:]");
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
NSLog(@"[HFBCorrectViewController viewDidLoad]");
}
- (void)viewDidAppear:(BOOL)animated
{
[super viewDidAppear:animated];
NSLog(@"[HFBCorrectViewController viewDidAppear]");
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)close:(id)sender
{
NSLog(@"[HFBCorrectViewController close:sender:]");
[self.delegate didDismissCorrectViewController];
}
@end
Edit:
Я нашел этот вопрос раньше: UITableView и presentViewController отображает 2 клика
И если я изменю свой код didSelectRow
на это, он работает очень долго с анимацией... Но это беспорядочно и не имеет смысла, почему это не работает в первую очередь. Поэтому я не считаю это ответом...
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row != [self.frequencyModel currentFrequencyIndex])
{
// If guess was wrong, then mark the selection as incorrect
NSLog(@"Incorrect Guess: %@", [self.frequencyModel frequencyLabelAtIndex:(int)indexPath.row]);
UITableViewCell *cell = [self.frequencyTableView cellForRowAtIndexPath:indexPath];
[cell setBackgroundColor:[UIColor colorWithRed:240/255.0f green:110/255.0f blue:103/255.0f alpha:1.0f]];
// [cell setAccessoryType:(UITableViewCellAccessoryType)]
}
else
{
// If guess was correct, show correct view
NSLog(@"Correct Guess: %@", [self.frequencyModel frequencyLabelAtIndex:(int)indexPath.row]);
////////////////////////////
// BELOW HERE ARE THE CHANGES
[self performSelector:@selector(showCorrectViewController:) withObject:nil afterDelay:0];
}
}
-(void)showCorrectViewController:(id)sender
{
self.correctViewController = [[HFBCorrectViewController alloc] init];
self.correctViewController.delegate = self;
self.correctViewController.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentViewController:self.correctViewController animated:YES completion:^(void){
NSLog(@"Completed Presenting correctViewController");
[self setUpViewForNextQuestion];
}];
}