Sha256: 45eb84b9ef7df863574f80c866bfd780d4d17c70aa37bb0736c7987e2f20c91b
Contents?: true
Size: 715 Bytes
Versions: 17
Compression:
Stored size: 715 Bytes
Contents
// // RhoExtManagerImpl.h // RhoAppBaseLib // // Created by Dmitry Soldatenkov on 12.05.14. // // #import <Foundation/Foundation.h> #import "IRhoExtManager.h" @interface RhoExtManagerImpl : NSObject <IRhoExtManager> { NSMutableSet* mExtensions; } @property (retain) NSMutableSet* mExtensions; -(id) init; -(void) registerExtension:(id<IRhoExtension>)extension; -(void) unregisterExtension:(id<IRhoExtension>)extension; -(BOOL) onBeforeNavigate:(NSString*)url tabIndex:(int)tabIndex; - (void) applicationDidBecomeActive:(UIApplication *)application; - (BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation; @end
Version data entries
17 entries across 17 versions & 2 rubygems