I have developed an app in Swift 3.2 which is currently live with base language English. I have added String files for Arabic and French. But till the time everything in co
Added below code to AppDelegate in didFinishLaunchingWithOptions First line to force app left to right.
Then in Edit Scheme - Added an Argument on Launch -AppleLanguages (Base). Working quite well for me to force user to English.
UIView.appearance().semanticContentAttribute = .forceLeftToRight
UserDefaults.standard.set(["Base"], forKey: "AppleLanguages")
UserDefaults.standard.synchronize()