// // ViewController.h // FMC Planner 2 // // Created by Kilian Hofmann on 19.03.16. // Copyright © 2016 Kilian Hofmann. All rights reserved. // #import @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