34 lines
741 B
Objective-C
34 lines
741 B
Objective-C
//
|
|
// ViewControllerKeyboard.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 20.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "SharedDeclerations.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
@interface ViewControllerKeyboard : UIViewController
|
|
|
|
#pragma mark - Keyboard management
|
|
|
|
@property (nonatomic) BOOL alphaOn;
|
|
@property (strong, nonatomic) NSArray *alphabet;
|
|
@property (strong, nonatomic) NSArray *numeric;
|
|
|
|
#pragma mark - Refrence to other views in app
|
|
|
|
@property (strong, nonatomic) ViewController *main;
|
|
|
|
#pragma mark - Keys as Array
|
|
|
|
@property (strong, nonatomic) IBOutletCollection(UIButton) NSArray *Keys;
|
|
|
|
#pragma mark - Key methods
|
|
|
|
- (IBAction)KeyTaps:(UIButton *)sender;
|
|
|
|
@end
|