diff --git a/Classes/Utility/FLEXKeyboardHelpViewController.m b/Classes/Utility/FLEXKeyboardHelpViewController.m index 08902384ed..5282b3467c 100644 --- a/Classes/Utility/FLEXKeyboardHelpViewController.m +++ b/Classes/Utility/FLEXKeyboardHelpViewController.m @@ -24,7 +24,9 @@ - (void)viewDidLoad self.textView = [[UITextView alloc] initWithFrame:self.view.bounds]; self.textView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight; [self.view addSubview:self.textView]; +#if TARGET_OS_SIMULATOR self.textView.text = [[FLEXKeyboardShortcutManager sharedManager] keyboardShortcutsDescription]; +#endif self.textView.backgroundColor = [UIColor blackColor]; self.textView.textColor = [UIColor whiteColor]; self.textView.font = [UIFont boldSystemFontOfSize:14.0];