// // SimpleMainView.h // rhorunner // // Created by Dmitry Moskalchuk on 07.03.10. // Copyright 2010 Rhomobile Inc. All rights reserved. // #import #import "RhoMainView.h" @interface SimpleMainView : UIViewController { UIView *parent; UIView *root; UIWebView *webView; UIToolbar *toolbar; UINavigationBar *navbar; } @property (retain) UIView *root; - (id)initWithMainView:(id)v; - (id)initWithMainView:(id)v toolbar:(NSArray*)items; - (id)initWithParentView:(UIView *)p frame:(CGRect)frame; @end