Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27062403e4 | ||
|
|
f9e81e1bf2 | ||
|
|
5640597418 | ||
|
|
6e4beb201d | ||
|
|
a895048566 | ||
|
|
88929d0eeb | ||
|
|
7d2e3fb340 | ||
|
|
5ac91c16fc | ||
|
|
dc57df025d | ||
|
|
7a572ff1f3 |
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'cocos_view_pod'
|
s.name = 'cocos_view_pod'
|
||||||
s.version = '0.1.14'
|
s.version = '0.1.23'
|
||||||
s.summary = 'A short description of cocos_view_pod.'
|
s.summary = 'A short description of cocos_view_pod.'
|
||||||
|
|
||||||
# This description is used to generate tags and improve search results.
|
# This description is used to generate tags and improve search results.
|
||||||
|
|||||||
@@ -11,14 +11,20 @@
|
|||||||
@interface dcocos_bridge : NSObject
|
@interface dcocos_bridge : NSObject
|
||||||
+ (dcocos_bridge *)instance;
|
+ (dcocos_bridge *)instance;
|
||||||
|
|
||||||
|
/**
|
||||||
|
Configures Cocos2d-x search paths by using the previously set custom resource path.
|
||||||
|
If no custom path has been set, it defaults to @"/hhhh".
|
||||||
|
*/
|
||||||
|
- (void)configureCocos2dSearchPaths:(NSString *)customResourcePath;
|
||||||
|
;
|
||||||
- (void)initPlatform;
|
- (void)initPlatform;
|
||||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions;
|
||||||
- (void)applicationWillResignActive:(UIApplication *)application;
|
- (void)applicationWillResignActive:(UIApplication *)application;
|
||||||
- (void)applicationDidBecomeActive:(UIApplication *)application;
|
- (void)applicationDidBecomeActive:(UIApplication *)application;
|
||||||
- (void)applicationWillTerminate:(UIApplication *)application;
|
- (void)applicationWillTerminate:(UIApplication *)application;
|
||||||
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator;
|
- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator;
|
||||||
- (UIView*)getCocosView;
|
- (UIView *)getCocosView;
|
||||||
- (void)setCocosView:(UIView*)view;
|
- (void)setCocosView:(UIView *)view;
|
||||||
- (float)getCocosPixelRatio;
|
- (float)getCocosPixelRatio;
|
||||||
|
|
||||||
+ (void)callS:(NSString *)funcName args:(NSString *)args;
|
+ (void)callS:(NSString *)funcName args:(NSString *)args;
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user