24 lines
563 B
Objective-C
24 lines
563 B
Objective-C
//
|
|
// ViewControllerKeyboard.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 20.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
@interface ViewControllerKeyboard : UIViewController
|
|
|
|
@property(nonatomic) BOOL alphaOn;
|
|
@property(strong, nonatomic) NSArray *alphabet;
|
|
@property(strong, nonatomic) NSArray *numeric;
|
|
@property(strong, nonatomic) ViewController *main;
|
|
|
|
@property(strong, nonatomic) IBOutletCollection(UIButton) NSArray *Keys;
|
|
|
|
- (IBAction)KeyTaps:(UIButton *)sender;
|
|
|
|
@end
|