I have localizable English and French files. I want display Registered symbols as a part of word i.e "MyApp®". English part of localization file shows this symbol correct in iOS APP UI. Same needs to display for French version i.e "MyApp ".
I also tried using unicode like MyApp\u{1D39}\u{1D30}. This gets worked in Swift playground but if I try it through Localization file it doesn't work below iOS 12( it shows ? insread of . On iOS 12 its working fine.
iOS version : 11.4 : I need to make changes in localization file only and not to use NSAttributed string every where in code. If anyone came across same problem, and found solution please post.
Below things I tried :
"MyApp®" = "MyApp\u{1D39}\u{1D30}" // Localization file
print(String(describing: "MyApp\u{1D39}\u{1D30}" // swift playground print(String(describing: " ")) // swift playground
"MyApp®" = "MyApp\u{1D39}\u{1D30}" // Localization file "MyApp®" = "MyApp ")) // Localization file- on UI it displaspace comes b/w ᴹ and ᴰ
print(String(describing: "MyApp\u{1D39}\u{1D30}" // swift playground print(String(describing: " ")) // swift playground
"MyApp®" = "MyApp\u{1D39}\u{1D30}" // Localization file
On iOS app UI component should render MyApp® as MyApp