blob: 0d78d9ca919e668b610d33579886d1d7e228dc8a [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#import <WebKit/WebKit.h>
#import <UIKit/UIKit.h>
#import "Suggestion.h"
// IvyController displays the main app view.
@interface IvyController
: UIViewController <UITextFieldDelegate, WKUIDelegate,
SuggestionDelegate>
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint;
// A text input field coupled to an output "tape", rendered with a WKWebView.
@property (strong, nonatomic) UITextField *input;
@property (strong, nonatomic) Suggestion *suggestionView;
@property (strong, nonatomic) WKWebView *tape;
@end