mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 13:17:49 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// RBXWebViewProtocol.h
|
||||
// RobloxMobile
|
||||
//
|
||||
// Created by Ashish Jain on 9/30/15.
|
||||
// Copyright (c) 2015 ROBLOX. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@protocol RBXWebViewProtocol <NSObject>
|
||||
|
||||
@property (nonatomic, strong) NSURLRequest *request;
|
||||
@property (nonatomic, strong) NSURL *URL;
|
||||
|
||||
- (void) setDelegateController:(id)delegate;
|
||||
- (void) loadRequest:(NSURLRequest *)request;
|
||||
- (void) evaluateJavaScript:(NSString *)javaScriptString completionHandler:(void(^)(NSError *))completionHandler;
|
||||
|
||||
- (BOOL) canGoBackInHistory;
|
||||
- (BOOL) canGoForwardInHistory;
|
||||
|
||||
- (void) goBackInHistory;
|
||||
- (void) goForwardInHistory;
|
||||
|
||||
- (void) enableScrolling:(BOOL)enable;
|
||||
- (void) enableMultipleTouch:(BOOL)enable;
|
||||
|
||||
@end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user