Skip to content

Instantly share code, notes, and snippets.

@novinfard
Created June 28, 2021 23:24
Show Gist options
  • Save novinfard/eec0ea42573290ff1e26412df3fb7bf5 to your computer and use it in GitHub Desktop.
Save novinfard/eec0ea42573290ff1e26412df3fb7bf5 to your computer and use it in GitHub Desktop.
[Flip the image for RTL in UIKit]
class ViewController: UIViewController {
@IBOutlet weak var imageView: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
imageView.image = UIImage(systemName: "pencil.circle.fill")?.imageFlippedForRightToLeftLayoutDirection()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment