提交sdk

This commit is contained in:
edy
2026-07-13 14:06:11 +08:00
parent eaa0b14fb2
commit 2490c58f88
28 changed files with 1691 additions and 407 deletions
+40
View File
@@ -0,0 +1,40 @@
//
// CustomView.m
// UnityFramework
//
// Created by Mac on 2024/1/19.
//
#import "CustomView.h"
#import "H5View.h"
@implementation CustomView
{
// WKWebView *webview;
// UIView* unityView;
// //ViewCfg config;
// CGPoint hitTestLocation;
// BOOL isTouchWebView;
// BOOL isWebviewOpen;
// BOOL canCT;
int test;
}
+(id) shared{
static CustomView *view = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{view = [[self alloc] init];});
return view;
}
-(void)initView{
}
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
UIView* testview = [ [H5View shared]hitTest:point withEvent:event];
return testview;
}
@end