FMCPlanner2/FMC Planner 2/ViewControllerScreen.h

25 lines
546 B
Objective-C

//
// ViewControllerScreen.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 ViewControllerScreen : UIViewController
@property(strong, nonatomic) IBOutletCollection(UILabel) NSArray *LSK;
@property(strong, nonatomic) IBOutlet UILabel *Scratchpad;
@property(strong, nonatomic) IBOutlet UILabel *Header;
@property(strong, nonatomic) ViewController *main;
- (void)loadScreen:(NSString *)screenName;
@end