camel case

This commit is contained in:
Pfeil, Scott Robert 2019-02-14 15:14:25 -05:00
parent 83aa4d91e6
commit a49beacbd6
2 changed files with 7 additions and 7 deletions

View File

@ -21,9 +21,9 @@
static NSMutableDictionary <NSString *, Class>*mapping;
dispatch_once(&onceToken, ^{
mapping = [@{
@"StandardHeader": MVMCoreUIHeaderView.class,
@"MoleculeStack": MVMCoreUIMoleculeStackView.class,
@"TwoButtonView": PrimaryButtonView.class
@"standardHeader": MVMCoreUIHeaderView.class,
@"moleculeStack": MVMCoreUIMoleculeStackView.class,
@"twoButtonView": PrimaryButtonView.class
} mutableCopy];
});
return mapping;

View File

@ -19,10 +19,10 @@
static NSMutableDictionary *viewControllerMapping;
dispatch_once(&onceToken, ^{
viewControllerMapping = [@{
@"LegacyLargeHeaderSingleLabel": [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[LegacyLargeHeaderSingleLabelTemplate class]],
@"TextFieldListForm" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MVMCoreUITextFieldListFormViewController class]],
@"MoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackTemplate class]],
@"CenterMoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackCenteredTemplate class]]
@"legacyLargeHeaderSingleLabel": [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[LegacyLargeHeaderSingleLabelTemplate class]],
@"textFieldListForm" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MVMCoreUITextFieldListFormViewController class]],
@"moleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackTemplate class]],
@"centerMoleculeStack" : [[MVMCoreViewControllerProgrammaticMappingObject alloc] initWithClass:[MoleculeStackCenteredTemplate class]]
} mutableCopy];
});
return viewControllerMapping;