I am using localization(English and arabic).I need to convert HTML to attributed string, when it converting in arabic, content and Bullet points are not aligned RTL direction. now I am using code is :
if LocalizationSystem.sharedInstance.getLanguage() == "ar" {
contentView.semanticContentAttribute = .forceRightToLeft
}else{
contentView.semanticContentAttribute = .forceLeftToRight
}
