Attributed Text Center Alignment

前端 未结 10 2443
故里飘歌
故里飘歌 2020-12-13 17:06

I have tried everything but cannot seem to center this text. Can someone please tell me where the error is.

NSMutableParagraphStyle *paragraphStyle = NSMutab         


        
10条回答
  •  隐瞒了意图╮
    2020-12-13 17:12

    Sometimes when text is in Arabic or other right align languages then when doing alignment Justified, last line text ends at left side. for this we can add baseWritingDirection below is sample code

    let paragraphStyle = NSMutableParagraphStyle()
    paragraphStyle.alignment = .justified
    paragraphStyle.baseWritingDirection = .rightToLeft
    attribute.addAttribute(NSAttributedStringKey.paragraphStyle, value:paragraphStyle, range:range)
    txtView.attributedText = attribute
    

提交回复
热议问题