23 lines
502 B
Objective-C
23 lines
502 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;
|
|
|
|
@end
|