Today's Menu  Portugal
journal and plan nutrition
Y3WebViewDelegate.h
Go to the documentation of this file.
1 //
2 // Y3WebViewDelegate.h
3 // TodaysMenu
4 //
5 // Created by Don Zeek on 5/17/18.
6 // Copyright © 2018 net.dzeek.y2015.ios.portfolio. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import <WebKit/WebKit.h>
11 
16 @protocol Y3WebViewDelegate <NSObject, WKNavigationDelegate, WKUIDelegate, WKScriptMessageHandler>
17 
18 //@property (strong, nonatomic) UIButton *backButton;
19 //@property (strong, nonatomic) UIButton *forwardButton;
20 
21 // -(void) diminishWebveiw;
22 // -(void) restoreWebveiw;
23 - (void) becomeResponder:(BOOL)flag;
24 - (BOOL) jsReturnIndication:(NSString *)string;
25 - (void) jsTitleReturn:(NSString *)string;
26 - (void) jsIngredientsReturn:(NSString *)string;
27 - (void) jsInstructionReturn:(NSString *)string;
28 - (void) logCopy;
29 - (void) fireSnippetScreen;
30 - (void) setControlbarColor:(UIColor *)color;
31 
32 
33 @end