确定unicode字符是否在UIFont中具有字形

时间:2017-03-01 19:34:59

标签: ios swift unicode uifont ctfont

我想知道某个unicode字符是否有字形表示,即使是通过级联字体。例如,假设我使用UIFont.systemFont(withSize:18)和字符串\u{1CDA},并想知道此字体是否会显示此字符的图形表示,而不是默认的问号表示(即没有图形表示,即使是支持的级联字体)。

2 个答案:

答案 0 :(得分:1)

这对我有用。 Swift 3,XCode 8.6版本:

import UIKit
import CoreText

extension Font {
    public func hasGlyph(utf32 character:UInt32) -> Bool {

        var code_point: [UniChar] = [
            UniChar.init(truncatingBitPattern: character),
            UniChar.init(truncatingBitPattern: character >> 16)
        ]
        var glyphs: [CGGlyph] = [0,0]
        let result = CTFontGetGlyphsForCharacters(self as CTFont, &code_point, &glyphs, glyphs.count)
        return result
    }
}

public class Glypher {

    let font:UIFont

    var support:[CTFont] = []

    public init(for font:UIFont, languages:[String] = ["en"]) {
        self.font = font
        let languages = languages as CFArray
        let result = CTFontCopyDefaultCascadeListForLanguages(font as CTFont, languages)
        let array = result as! Array<CTFontDescriptor>
        for descriptor in array {
            support.append(CTFontCreateWithFontDescriptor(descriptor,18,nil))
        }
    }

    public func isGlyph(_ point:UInt32) -> Bool {
        return font.hasGlyph(utf32:point) || isGlyphSupported(point)
    }

    public func isGlyphSupported(_ point:UInt32) -> Bool {
        for font in support {
            var code_point: [UniChar] = [
                UniChar.init(truncatingBitPattern: point),
                UniChar.init(truncatingBitPattern: point >> 16)
            ]
            var glyphs: [CGGlyph] = [0, 0]
            let result = CTFontGetGlyphsForCharacters(font as CTFont, &code_point, &glyphs, glyphs.count)
            if result {
                return true
            }
        }
        return false
    }
}

let glypher = Glypher(for:UIFont.systemFont(ofSize:18))
if glypher.isGlyph(0x1CDA) {
    print("bingo!")
}

答案 1 :(得分:1)

这也可能有用,它不会检查字形,但会检查字符集

import CoreText
func isSupported(unicode: UnicodeScalar, font: UIFont) -> Bool {
    let coreFont: CTFont = font
    let characterSet: CharacterSet = CTFontCopyCharacterSet(coreFont) as CharacterSet
    return characterSet.contains(unicode)
 }

示例测试:

let testString = "R"
let font = UIFont.boldSystemFont(ofSize: 10.0)
print("\(isSupported(unicode: testString.unicodeScalars.first!, font: font))")