mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6f75065d82
Summary: This was added in D3343907 June 1st 2016, disabled in D3428043 June 16, 2016 and never re-enabled. Changelog: [Internal] Reviewed By: shergin Differential Revision: D21635227 fbshipit-source-id: db51dfb6271359bea7da34b4e2a71931fc7c2a63
32 lines
807 B
Objective-C
32 lines
807 B
Objective-C
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RCTKeyCommands : NSObject
|
|
|
|
+ (instancetype)sharedInstance;
|
|
|
|
/**
|
|
* Register a keyboard command.
|
|
*/
|
|
- (void)registerKeyCommandWithInput:(NSString *)input
|
|
modifierFlags:(UIKeyModifierFlags)flags
|
|
action:(void (^)(UIKeyCommand *command))block;
|
|
|
|
/**
|
|
* Unregister a keyboard command.
|
|
*/
|
|
- (void)unregisterKeyCommandWithInput:(NSString *)input modifierFlags:(UIKeyModifierFlags)flags;
|
|
|
|
/**
|
|
* Check if a command is registered.
|
|
*/
|
|
- (BOOL)isKeyCommandRegisteredForInput:(NSString *)input modifierFlags:(UIKeyModifierFlags)flags;
|
|
|
|
@end
|