How to detect whether a character belongs to a Right To Left language?

Unicode characters have different properties associated with them. These properties cannot be derived from the code point; you need a table that tells you if a character has a certain property or not. You are interested in characters with bidirectional property “R” or “AL” (RandALCat). A RandALCat character is a character with unambiguously right-to-left directionality. … Read more

Sane localization workflow using Xcode 6, iOS 8, Storyboards and xliff?

We’ve resorted to connecting every label to an @IBOutlet and setting its translation in viewDidLoad() with NSLocalizedString. You are doing that right. Seriously. Wrap your development process around it and you’ll get way better off than trying to adopt the mess that the Storyboard localization evolved into. It solves pt.4 – you decide what you … Read more

tech