Can't apply line spacing with UITextView?

前端 未结 3 530
广开言路
广开言路 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条回答
  •  猫巷女王i
    2021-02-08 19:49

    Xcode 10.1 Swift 4.2

    let style = NSMutableParagraphStyle()
    style.lineSpacing = 19
    let attributes = [NSAttributedString.Key.paragraphStyle: style]
    textView.attributedText = NSAttributedString(string: model.text, attributes: attributes)
    

提交回复
热议问题