Skip to content

Instantly share code, notes, and snippets.

View BrunoMiguens's full-sized avatar
🇵🇹

Bruno Miguens BrunoMiguens

🇵🇹
  • iOS Developer @ Tripadvisor
  • Lisbon, Portugal
View GitHub Profile
import UIKit
extension String {
var glyphCount: Int {
let richText = NSAttributedString(string: self)
let line = CTLineCreateWithAttributedString(richText)
return CTLineGetGlyphCount(line)
}