FMCPlanner2/FMC Planner 2/ViewControllerRouteRequest.h
2016-04-18 13:20:07 +02:00

29 lines
701 B
Objective-C

//
// RouteRequestViewController.h
// FMC Planner 2
//
// Created by Kilian Hofmann on 16.04.16.
// Copyright © 2016 Kilian Hofmann. All rights reserved.
//
#import "SharedDeclerations.h"
#import "ViewController.h"
#import <UIKit/UIKit.h>
@interface ViewControllerRouteRequest
: UIViewController <UIWebViewDelegate, UITextFieldDelegate>
#pragma mark - Refrence to other views in app
@property (strong, nonatomic) ViewController *main;
#pragma mark - Things on screen
@property (strong, nonatomic) IBOutlet UIWebView *webView;
@property (strong, nonatomic) IBOutlet UITextView *textView;
@property (strong, nonatomic) IBOutlet UITextField *url;
- (IBAction)ok:(UIButton *)sender;
@end