FMCPlanner2/FMC Planner 2/ViewController.h
2016-03-20 14:26:52 +01:00

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