You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
557 B

//
// FLEXKeyboardShortcutManager.h
// FLEX
//
// Created by Ryan Olson on 9/19/15.
// Copyright © 2015 Flipboard. All rights reserved.
//
#import <UIKit/UIKit.h>
#if TARGET_OS_SIMULATOR
@interface FLEXKeyboardShortcutManager : NSObject
+ (instancetype)sharedManager;
- (void)registerSimulatorShortcutWithKey:(NSString *)key modifiers:(UIKeyModifierFlags)modifiers action:(dispatch_block_t)action description:(NSString *)description;
- (NSString *)keyboardShortcutsDescription;
@property (nonatomic, getter=isEnabled) BOOL enabled;
@end
#endif