mirror of
https://github.com/tappollo/Xcode-Quick-Localization.git
synced 2026-01-12 22:37:18 +08:00
17 lines
393 B
Objective-C
17 lines
393 B
Objective-C
//
|
|
// AMMenuGenerator.h
|
|
// AMMethod2Implement
|
|
//
|
|
// Created by JohnnyLiu on 15/4/1.
|
|
// Copyright (c) 2015年 Tendencystudio. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface QLMenuGenerator : NSObject
|
|
|
|
+ (void)generateMenuItems:(NSBundle *)bundle version:(NSString *)version target:(id)target;
|
|
+ (NSUInteger)getKeyEquivalentModifierMaskWithKey:(NSString *)key;
|
|
|
|
@end
|