Post

Replies

Boosts

Views

Activity

Reply to Why UILabel behaves differently in iOS 14 and iOS 13, when NSString contains RTL language
@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:
Mar ’21