Created
March 21, 2017 10:09
-
-
Save gnou/52bd2f31e99c9311ffa0eb0183ac7cfd 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 | |
} |
yes, you can use it in any way you prefer.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks your code :)
Can I use your code in my commercial app?
Please let me know how I can use the code for commercial distribution.