32 lines
832 B
Objective-C
32 lines
832 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,
|
|
UITextViewDelegate>
|
|
|
|
#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;
|
|
@property (strong, nonatomic)
|
|
IBOutlet UIActivityIndicatorView *activityIndicator;
|
|
|
|
- (IBAction)ok:(UIButton *)sender;
|
|
|
|
@end
|