You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cocos_lib/cocos/platform/ios/WarpCocosContent.h

24 lines
504 B

#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface WarpCocosContent : NSObject
// 渲染视图
@property (nonatomic, assign) UIView *renderView;
// 用于动态创建游戏视图控制器的 Block
@property (nonatomic, copy) UIViewController* (^gameVCBlock)(void);
// 单例方法
+ (instancetype)shareInstance;
// 设置渲染视图
- (void)setRenderView:(UIView *)renderView;
// 获取当前游戏视图控制器
- (UIViewController *)getGameViewController;
@end
NS_ASSUME_NONNULL_END