FMCPlanner2/FMC Planner 2/ViewControllerRouteRequest.h

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