简体   繁体   中英

How to Increase Line spacing in UILabel in Swift 4

I want to increase the Line Spacing in UILabel but I can't figure it out how.

I found this solution [ https://stackoverflow.com/a/39158698/8633963] on Stackoverflow but my Xcode always displays this:

Use of unresolved identifier 'NSParagraphStyleAttributeName'

I think the answer is right but it did not work for me. Can anyone help with this problem?

在这种情况下,在 Swift 4 中,您必须使用NSAttributedStringKey.paragraphStyle而不是NSParagraphStyleAttributeName

Swift 5

import UIKit

extension UILabel {
    
    func setLineHeight(lineHeight: CGFloat) {
        let text = self.text
        if let text = text {
            let attributeString = NSMutableAttributedString(string: text)
            let style = NSMutableParagraphStyle()
            
            style.lineSpacing = lineHeight
            attributeString.addAttribute(NSAttributedString.Key.paragraphStyle, value: style, range: NSMakeRange(0, attributeString.length))
            self.attributedText = attributeString
        }
    }

}

This worked for me.

import UIKit

    extension UILabel {

        func setLineHeight(lineHeight: CGFloat) {
            let text = self.text
            if let text = text {
                let attributeString = NSMutableAttributedString(string: text)
                let style = NSMutableParagraphStyle()

                style.lineSpacing = lineHeight
                attributeString.addAttribute(NSParagraphStyleAttributeName, value: style, range: NSMakeRange(0, count(text)))
                self.attributedText = attributeString
            }
        }
    }

Check out this ridiculously simple solution that works!

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CommentTVCCell

    // Configure the cell...


    cell.myLabel?.text = "\n[\(indexPath.row + 1)]\n\n" + itemArray[indexPath.row].name

    //

    return cell 
}

//Notice the use of the \\n to load a return or as many as you wish. Make sure they are within a string designation.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM