moved to xcode 4
This commit is contained in:
parent
7b4adc0f63
commit
526a9ba0cc
46 changed files with 8146 additions and 1764 deletions
|
@ -12,7 +12,7 @@
|
|||
@implementation Constants
|
||||
|
||||
+ (NSString *)stringFromVirtualKeyCode:(NSInteger)code {
|
||||
NSString *string;
|
||||
NSString *string = nil;
|
||||
switch (code) {
|
||||
case kVK_ANSI_A:
|
||||
string = @"A";
|
||||
|
@ -210,6 +210,7 @@
|
|||
string = @"9";
|
||||
break;
|
||||
default:
|
||||
string = nil;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue