@Claude31
Firstly, at the Localizable.strings file add the following line:
"%@_fans" = "%@ متابعين";
And then create string like this:
NSString *num = @"5.6k";
NSString *str = [NSString localizedStringWithFormat:NSLocalizedString(@"%@_fans", nil), num];
label.text = str;
It will show different result between iOS 13 and iOS 14, both simulator and device
Topic:
UI Frameworks
SubTopic:
UIKit
Tags: