Can't apply line spacing with UITextView?

前端 未结 3 517
广开言路
广开言路 2021-02-08 19:06

Do you have any ideas about line spacing with UITextView? I cannot apply it. Below it is my code.

import UIKit

class DetailViewController: UIViewController {
           


        
3条回答
  •  清酒与你
    2021-02-08 19:51

    Xcode 9.2 Swift 4

    let style = NSMutableParagraphStyle()
    style.lineSpacing = 0
    let attributes = [NSAttributedStringKey.paragraphStyle : style]
    txtViewAbout.attributedText = NSAttributedString(string: txtViewAbout.text, attributes: attributes)
    

提交回复
热议问题