Attributed Text Center Alignment

前端 未结 10 2467
故里飘歌
故里飘歌 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:32

    In Swift

    let titleString = "title here"
    
    let paragraphStyle = NSMutableParagraphStyle()
    paragraphStyle.alignment = .Center
    
    let attributedString = NSAttributedString(
        string: titleString,
        attributes: [NSParagraphStyleAttributeName: paragraphStyle]
    )
    
    titleAttributedLabel.attributedText = attributedString
    

提交回复
热议问题