Sha256: 4b850da5e88b8ff0ba5907a1888ac37be7fd8e51d172f3f4ca9e66fd7582f7d7
Contents?: true
Size: 1.27 KB
Versions: 6
Compression:
Stored size: 1.27 KB
Contents
// // SimpleMainView.h // rhorunner // // Created by Dmitry Moskalchuk on 07.03.10. // Copyright 2010 Rhomobile Inc. All rights reserved. // #import <UIKit/UIKit.h> #import "RhoMainView.h" #import "RhoViewController.h" #include "RhoNativeViewManagerOC.h" @interface SimpleMainView : RhoViewController <RhoMainView, UIWebViewDelegate> { UIWebView *webView; UIToolbar *toolbar; UINavigationBar *navbar; CGRect rootFrame; id<NativeViewOC,NSObject> nativeView; NSString* nativeViewType; UIView* nativeViewView; RhoViewController* mTabBarCallback; } @property (nonatomic,retain) UIWebView *webView; @property (nonatomic,retain) UIToolbar *toolbar; @property (nonatomic,retain) UINavigationBar *navbar; @property (nonatomic,retain) NSString *nativeViewType; @property (nonatomic,retain) UIView *nativeViewView; @property (nonatomic,assign) RhoViewController* mTabBarCallback; - (id)initWithMainView:(id<RhoMainView>)v parent:(UIWindow*)p; - (id)initWithMainView:(id<RhoMainView>)v parent:(UIWindow*)p toolbar:(NSArray*)items; - (id)initWithParentView:(UIView *)p frame:(CGRect)frame; - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation; - (void)loadView; - (UIWebView*)getWebView:(int)tab_index; + (void) disableHiddenOnStart; @end
Version data entries
6 entries across 6 versions & 1 rubygems