-(void) viewDidAppear:(BOOL)animated {
if (!self.hasPresentedModalMenuView) {
NSLog(@"Firing");
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"highScoresStory" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"highScores"];
[vc setModalPresentationStyle:UIModalPresentationFullScreen];
[self presentViewController:vc animated:YES completion:nil];
} }
This Keeps Repeating over and over again. I have taken out the code below "Firing", and if I do that, it only fires once. Why does this keep firing? Thank You for any help.