37 lines
1016 B
Objective-C
37 lines
1016 B
Objective-C
//
|
|
// ViewControllerScreen.h
|
|
// FMC Planner 2
|
|
//
|
|
// Created by Kilian Hofmann on 20.03.16.
|
|
// Copyright © 2016 Kilian Hofmann. All rights reserved.
|
|
//
|
|
|
|
#import "SharedDeclerations.h"
|
|
#import "ViewController.h"
|
|
#import "ViewControllerServiceMenu.h"
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
@interface ViewControllerScreen : UIViewController
|
|
|
|
@property(strong, nonatomic) ViewController *main;
|
|
@property(nonatomic) NSUInteger maxNumRoutePages;
|
|
@property(nonatomic) NSUInteger numRoutePage;
|
|
|
|
@property(strong, nonatomic) IBOutletCollection(UILabel) NSArray *LSK;
|
|
@property(strong, nonatomic) IBOutletCollection(UILabel) NSArray *Desc;
|
|
|
|
@property(strong, nonatomic) IBOutlet UILabel *Scratchpad;
|
|
|
|
@property(strong, nonatomic) IBOutlet UILabel *Header;
|
|
|
|
@property(strong, nonatomic) IBOutlet NSLayoutConstraint *FrameHeight;
|
|
|
|
@property(strong, nonatomic) IBOutlet UILabel *LSK_R1;
|
|
|
|
- (void)loadScreen:(NSString *)screenName withOptions:(NSArray *)options;
|
|
- (void)loadDataToScreen;
|
|
- (void)clearScreen;
|
|
|
|
@end
|