33 lines
795 B
Objective-C
33 lines
795 B
Objective-C
//
|
|
// ViewController.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 19.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ViewController : UIViewController
|
|
|
|
@property(nonatomic) BOOL alphaOn;
|
|
|
|
@property(strong, nonatomic) NSArray *alphabet;
|
|
@property(strong, nonatomic) NSArray *numeric;
|
|
|
|
@property(strong, nonatomic) IBOutletCollection(UIButton) NSArray *Keys;
|
|
|
|
@property(strong, nonatomic) IBOutlet UIView *backdropKeys;
|
|
|
|
@property(strong, nonatomic) IBOutlet UIView *backdropScreen;
|
|
|
|
@property(strong, nonatomic) IBOutletCollection(UILabel) NSArray *ScreenLabels;
|
|
|
|
@property(strong, nonatomic) IBOutlet UILabel *Scratchpad;
|
|
|
|
@property(strong, nonatomic) IBOutlet UILabel *Header;
|
|
|
|
- (IBAction)KeyTaps:(UIButton *)sender;
|
|
|
|
@end
|