Swiftmessages: Do you support RTL?

Created on 8 Nov 2017  路  6Comments  路  Source: SwiftKickMobile/SwiftMessages

How can I change message direction?

All 6 comments

Yep.

So, tell me how?

Its not working, if its working for anyone please tell me

Its not working, if its working for anyone please tell me

I have same issue, but you can handle it using transform to content elements

```
view.backgroundView.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
view.titleLabel?.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)
view.iconImageView?.transform = CGAffineTransform(scaleX: -1.0, y: 1.0)

Was this page helpful?
0 / 5 - 0 ratings