In my framework app, I have some localization files added and have a method to get localised strings as follow
-(NSString *)getCurrentLocale{
return NSLocalizedString(@"mykey", nil);
}
and I have installed this pod into one demo app, and trying to get the locale but it always returns the key, (it returns 'mykey')
I have double checked the format and name (Localizable.strings)
within the string files
all files has proper format
but I do have locale strings as values in my Localizable.strings
ex: "mykey" = "ar_SA";
any Idea where I am going wrong?