-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
Description
Hi, i am facing an issue in xcode 7.1. Every time run app view gets black and - (void)eegeoMapReady:(id)api delegate never call.
Step1:
Include eegeo api using pods and add resources folder from example app.
Step2:
Added two keys in .plist eeGeoAppBase and eeGeoMapsApiKey(generated from dev portal)
Step3:
added logic to controller as per guide
-
(void)viewDidLoad {
[super viewDidLoad];self.eegeoMV = [[[EGMapView alloc] initWithFrame:self.view.bounds] autorelease];
self.eegeoMVeegeoMapDelegate = self;
self.eegeoMV.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;[self.view insertSubview:self.eegeoMV atIndex:0];
}
am i missing something ?

