This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,20 @@
//
// RBHybridWebViewProtocol.h
// RobloxMobile
//
// Created by Ashish Jain on 10/19/15.
// Copyright © 2015 ROBLOX. All rights reserved.
//
@class RBHybridCommand;
@protocol RBHybridWebViewProtocol <NSObject>
@property(weak, nonatomic) UIViewController *controller;
@property(nonatomic, readonly) NSString* webviewID;
@property(nonatomic, readonly) NSInteger lastRequestID;
- (void)executeJavascriptCommand:(NSString *)jsonCommand requestID:(NSInteger)requestId;
- (void)executeCallback:(NSString*)callbackID success:(BOOL)success withParams:(NSDictionary*)params;
@end