button map

This commit is contained in:
Suresh, Kamlesh 2018-10-06 15:05:37 -04:00
parent 4c506b5b59
commit 35da51bc74

View File

@ -19,11 +19,15 @@
self.pageJSON = pageJSON;
self.modulesJSON = modulesJSON;
self.buttonMap = [pageJSON dictionaryForKey:@"ButtonMap"];
//self.buttonMap = [pageJSON dictionaryForKey:@"ButtonMap"];
}
return self;
}
- (NSDictionary *) buttonMap {
return [self.pageJSON dictionaryForKey:@"ButtonMap"];
}
- (nullable instancetype)initWithRequestParameters:(nullable MVMCoreRequestParameters *)requestParameters dataForPage:(nullable NSDictionary *)dataForPage delegate:(nullable NSObject<MVMCoreLoadDelegateProtocol,MVMCorePresentationDelegateProtocol,MVMCoreActionDelegateProtocol>*)delegate {
if (self = [self initWithDelegate:delegate]) {
self.requestParameters = requestParameters;