Sha256: 3f724412dc302b58e88bf7d8dd4c64d31273bbf03694430233bb45fca6a5fa4b
Contents?: true
Size: 1.14 KB
Versions: 7
Compression:
Stored size: 1.14 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; } @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; - (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; @end
Version data entries
7 entries across 7 versions & 1 rubygems