-
-
Save conscientiousness/2af7c54941e7712a4c545cadd0670f9c to your computer and use it in GitHub Desktop.
Calculate height of some text when width is fixed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct TextSize { | |
fileprivate struct CacheEntry: Hashable { | |
let text: String | |
let font: UIFont | |
let width: CGFloat | |
let insets: UIEdgeInsets | |
fileprivate var hashValue: Int { | |
return text.hashValue ^ Int(width) ^ Int(insets.top) ^ Int(insets.left) ^ Int(insets.bottom) ^ Int(insets.right) | |
} | |
} | |
fileprivate static var cache = [CacheEntry: CGRect]() { | |
didSet { | |
assert(Thread.isMainThread) | |
} | |
} | |
public static func size(_ text: String, font: UIFont, width: CGFloat, insets: UIEdgeInsets = UIEdgeInsets.zero) -> CGRect { | |
let key = CacheEntry(text: text, font: font, width: width, insets: insets) | |
if let hit = cache[key] { | |
return hit | |
} | |
let constrainedSize = CGSize(width: width - insets.left - insets.right, height: CGFloat.greatestFiniteMagnitude) | |
let attributes = [ NSFontAttributeName: font ] | |
let options: NSStringDrawingOptions = [.usesFontLeading, .usesLineFragmentOrigin] | |
var bounds = (text as NSString).boundingRect(with: constrainedSize, options: options, attributes: attributes, context: nil) | |
bounds.size.width = width | |
bounds.size.height = ceil(bounds.height + insets.top + insets.bottom) | |
cache[key] = bounds | |
return bounds | |
} | |
} | |
private func ==(lhs: TextSize.CacheEntry, rhs: TextSize.CacheEntry) -> Bool { | |
return lhs.width == rhs.width && lhs.insets == rhs.insets && lhs.text == rhs.text | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment