// // GlobalWebController.m // WebviewStuff // // Created by PLUC SeniorDesign on 3/17/15. // Copyright (c) 2015 PLUC SeniorDesign. All rights reserved. // #import "GlobalWebController.h" @implementation GlobalWebController @synthesize web; static GlobalWebController *instance = nil; +(GlobalWebController*) getInstance { @synchronized(self) { if (instance==nil) { instance = [GlobalWebController new]; } } return instance; } @end