|
@@ -24,7 +24,9 @@
|
|
|
self.textView = [[UITextView alloc] initWithFrame:self.view.bounds];
|
|
self.textView = [[UITextView alloc] initWithFrame:self.view.bounds];
|
|
|
self.textView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
|
|
self.textView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
|
|
|
[self.view addSubview:self.textView];
|
|
[self.view addSubview:self.textView];
|
|
|
|
|
+#if TARGET_OS_SIMULATOR
|
|
|
self.textView.text = [[FLEXKeyboardShortcutManager sharedManager] keyboardShortcutsDescription];
|
|
self.textView.text = [[FLEXKeyboardShortcutManager sharedManager] keyboardShortcutsDescription];
|
|
|
|
|
+#endif
|
|
|
self.textView.backgroundColor = [UIColor blackColor];
|
|
self.textView.backgroundColor = [UIColor blackColor];
|
|
|
self.textView.textColor = [UIColor whiteColor];
|
|
self.textView.textColor = [UIColor whiteColor];
|
|
|
self.textView.font = [UIFont boldSystemFontOfSize:14.0];
|
|
self.textView.font = [UIFont boldSystemFontOfSize:14.0];
|