// // GlobalWebController.h // PLUCdraft // // Created by PLUC SeniorDesign on 3/18/15. // Copyright (c) 2015 Alexander W. Moore. All rights reserved. // #import #import @interface GlobalWebController : NSObject { UIWebView *web; bool isInitialized; } @property(nonatomic, retain) UIWebView *web; @property(nonatomic, assign) bool isInitialized; +(GlobalWebController*) getInstance; @end