diff --git a/MVMCoreUI/Utility/MVMCoreUIUtility.h b/MVMCoreUI/Utility/MVMCoreUIUtility.h index daba0310..12c1aa34 100644 --- a/MVMCoreUI/Utility/MVMCoreUIUtility.h +++ b/MVMCoreUI/Utility/MVMCoreUIUtility.h @@ -23,7 +23,7 @@ NS_ASSUME_NONNULL_BEGIN + (nullable NSBundle *)bundleForMVMCoreUI; /// The bundle for the VDS frameowrk. Handy for accessing VDS resources such as fonts. -+ (nullable NSBundle *)bundleForVDS; ++ (nullable NSBundle *)bundleForFonts; // Returns the hardcoded string from the string file. + (nullable NSString *)hardcodedStringWithKey:(nonnull NSString *)key; diff --git a/MVMCoreUI/Utility/MVMCoreUIUtility.m b/MVMCoreUI/Utility/MVMCoreUIUtility.m index c8e57888..e725114d 100644 --- a/MVMCoreUI/Utility/MVMCoreUIUtility.m +++ b/MVMCoreUI/Utility/MVMCoreUIUtility.m @@ -22,7 +22,7 @@ return [NSBundle bundleWithIdentifier:@"com.vzw.MVMCoreUI"]; } -+ (nullable NSBundle *)bundleForVDS { ++ (nullable NSBundle *)bundleForFonts { return [NSBundle bundleWithIdentifier:@"com.vzw.vds"]; }