IceCubes/IceCubesApp/App/Tabs/Timeline/Symbols.swift
2023-07-19 07:46:25 +02:00

19 lines
412 B
Swift

//
// Symbols.swift
// IceCubesApp
//
// Created by Alejandro Martinez on 18/7/23.
//
import Foundation
let allSymbols: [String] = {
if let bundle = Bundle(identifier: "com.apple.CoreGlyphs"),
let resourcePath = bundle.path(forResource: "symbol_search", ofType: "plist"),
let plist = NSDictionary(contentsOfFile: resourcePath)
{
return plist.allKeys as? [String] ?? []
}
return []
}()