├── AllFonts.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── AllFonts.xccheckout └── xcuserdata │ └── caisenchuan.xcuserdatad │ └── xcschemes │ ├── AllFonts.xcscheme │ └── xcschememanagement.plist ├── AllFonts ├── AllFonts-Info.plist ├── AllFonts-Prefix.pch ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── MainVC.h ├── MainVC.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── AllFontsTests ├── AllFontsTests-Info.plist ├── AllFontsTests.m └── en.lproj │ └── InfoPlist.strings ├── README.md └── screenshot.png /AllFonts.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | E9EAA10319A43E7F002BD113 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA10219A43E7F002BD113 /* Foundation.framework */; }; 11 | E9EAA10519A43E7F002BD113 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA10419A43E7F002BD113 /* CoreGraphics.framework */; }; 12 | E9EAA10719A43E7F002BD113 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA10619A43E7F002BD113 /* UIKit.framework */; }; 13 | E9EAA10D19A43E7F002BD113 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E9EAA10B19A43E7F002BD113 /* InfoPlist.strings */; }; 14 | E9EAA10F19A43E7F002BD113 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EAA10E19A43E7F002BD113 /* main.m */; }; 15 | E9EAA11319A43E7F002BD113 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EAA11219A43E7F002BD113 /* AppDelegate.m */; }; 16 | E9EAA11519A43E7F002BD113 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E9EAA11419A43E7F002BD113 /* Images.xcassets */; }; 17 | E9EAA11C19A43E7F002BD113 /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA11B19A43E7F002BD113 /* XCTest.framework */; }; 18 | E9EAA11D19A43E7F002BD113 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA10219A43E7F002BD113 /* Foundation.framework */; }; 19 | E9EAA11E19A43E7F002BD113 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E9EAA10619A43E7F002BD113 /* UIKit.framework */; }; 20 | E9EAA12619A43E7F002BD113 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = E9EAA12419A43E7F002BD113 /* InfoPlist.strings */; }; 21 | E9EAA12819A43E7F002BD113 /* AllFontsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EAA12719A43E7F002BD113 /* AllFontsTests.m */; }; 22 | E9EAA13319A43E95002BD113 /* MainVC.m in Sources */ = {isa = PBXBuildFile; fileRef = E9EAA13219A43E95002BD113 /* MainVC.m */; }; 23 | /* End PBXBuildFile section */ 24 | 25 | /* Begin PBXContainerItemProxy section */ 26 | E9EAA11F19A43E7F002BD113 /* PBXContainerItemProxy */ = { 27 | isa = PBXContainerItemProxy; 28 | containerPortal = E9EAA0F719A43E7F002BD113 /* Project object */; 29 | proxyType = 1; 30 | remoteGlobalIDString = E9EAA0FE19A43E7F002BD113; 31 | remoteInfo = AllFonts; 32 | }; 33 | /* End PBXContainerItemProxy section */ 34 | 35 | /* Begin PBXFileReference section */ 36 | E9EAA0FF19A43E7F002BD113 /* AllFonts.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AllFonts.app; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | E9EAA10219A43E7F002BD113 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 38 | E9EAA10419A43E7F002BD113 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 39 | E9EAA10619A43E7F002BD113 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 40 | E9EAA10A19A43E7F002BD113 /* AllFonts-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "AllFonts-Info.plist"; sourceTree = ""; }; 41 | E9EAA10C19A43E7F002BD113 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 42 | E9EAA10E19A43E7F002BD113 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 43 | E9EAA11019A43E7F002BD113 /* AllFonts-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "AllFonts-Prefix.pch"; sourceTree = ""; }; 44 | E9EAA11119A43E7F002BD113 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 45 | E9EAA11219A43E7F002BD113 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 46 | E9EAA11419A43E7F002BD113 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 47 | E9EAA11A19A43E7F002BD113 /* AllFontsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AllFontsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 48 | E9EAA11B19A43E7F002BD113 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 49 | E9EAA12319A43E7F002BD113 /* AllFontsTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "AllFontsTests-Info.plist"; sourceTree = ""; }; 50 | E9EAA12519A43E7F002BD113 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 51 | E9EAA12719A43E7F002BD113 /* AllFontsTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AllFontsTests.m; sourceTree = ""; }; 52 | E9EAA13119A43E95002BD113 /* MainVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainVC.h; sourceTree = ""; }; 53 | E9EAA13219A43E95002BD113 /* MainVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainVC.m; sourceTree = ""; }; 54 | /* End PBXFileReference section */ 55 | 56 | /* Begin PBXFrameworksBuildPhase section */ 57 | E9EAA0FC19A43E7F002BD113 /* Frameworks */ = { 58 | isa = PBXFrameworksBuildPhase; 59 | buildActionMask = 2147483647; 60 | files = ( 61 | E9EAA10519A43E7F002BD113 /* CoreGraphics.framework in Frameworks */, 62 | E9EAA10719A43E7F002BD113 /* UIKit.framework in Frameworks */, 63 | E9EAA10319A43E7F002BD113 /* Foundation.framework in Frameworks */, 64 | ); 65 | runOnlyForDeploymentPostprocessing = 0; 66 | }; 67 | E9EAA11719A43E7F002BD113 /* Frameworks */ = { 68 | isa = PBXFrameworksBuildPhase; 69 | buildActionMask = 2147483647; 70 | files = ( 71 | E9EAA11C19A43E7F002BD113 /* XCTest.framework in Frameworks */, 72 | E9EAA11E19A43E7F002BD113 /* UIKit.framework in Frameworks */, 73 | E9EAA11D19A43E7F002BD113 /* Foundation.framework in Frameworks */, 74 | ); 75 | runOnlyForDeploymentPostprocessing = 0; 76 | }; 77 | /* End PBXFrameworksBuildPhase section */ 78 | 79 | /* Begin PBXGroup section */ 80 | E9EAA0F619A43E7F002BD113 = { 81 | isa = PBXGroup; 82 | children = ( 83 | E9EAA10819A43E7F002BD113 /* AllFonts */, 84 | E9EAA12119A43E7F002BD113 /* AllFontsTests */, 85 | E9EAA10119A43E7F002BD113 /* Frameworks */, 86 | E9EAA10019A43E7F002BD113 /* Products */, 87 | ); 88 | sourceTree = ""; 89 | }; 90 | E9EAA10019A43E7F002BD113 /* Products */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | E9EAA0FF19A43E7F002BD113 /* AllFonts.app */, 94 | E9EAA11A19A43E7F002BD113 /* AllFontsTests.xctest */, 95 | ); 96 | name = Products; 97 | sourceTree = ""; 98 | }; 99 | E9EAA10119A43E7F002BD113 /* Frameworks */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | E9EAA10219A43E7F002BD113 /* Foundation.framework */, 103 | E9EAA10419A43E7F002BD113 /* CoreGraphics.framework */, 104 | E9EAA10619A43E7F002BD113 /* UIKit.framework */, 105 | E9EAA11B19A43E7F002BD113 /* XCTest.framework */, 106 | ); 107 | name = Frameworks; 108 | sourceTree = ""; 109 | }; 110 | E9EAA10819A43E7F002BD113 /* AllFonts */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | E9EAA11119A43E7F002BD113 /* AppDelegate.h */, 114 | E9EAA11219A43E7F002BD113 /* AppDelegate.m */, 115 | E9EAA11419A43E7F002BD113 /* Images.xcassets */, 116 | E9EAA10919A43E7F002BD113 /* Supporting Files */, 117 | E9EAA13119A43E95002BD113 /* MainVC.h */, 118 | E9EAA13219A43E95002BD113 /* MainVC.m */, 119 | ); 120 | path = AllFonts; 121 | sourceTree = ""; 122 | }; 123 | E9EAA10919A43E7F002BD113 /* Supporting Files */ = { 124 | isa = PBXGroup; 125 | children = ( 126 | E9EAA10A19A43E7F002BD113 /* AllFonts-Info.plist */, 127 | E9EAA10B19A43E7F002BD113 /* InfoPlist.strings */, 128 | E9EAA10E19A43E7F002BD113 /* main.m */, 129 | E9EAA11019A43E7F002BD113 /* AllFonts-Prefix.pch */, 130 | ); 131 | name = "Supporting Files"; 132 | sourceTree = ""; 133 | }; 134 | E9EAA12119A43E7F002BD113 /* AllFontsTests */ = { 135 | isa = PBXGroup; 136 | children = ( 137 | E9EAA12719A43E7F002BD113 /* AllFontsTests.m */, 138 | E9EAA12219A43E7F002BD113 /* Supporting Files */, 139 | ); 140 | path = AllFontsTests; 141 | sourceTree = ""; 142 | }; 143 | E9EAA12219A43E7F002BD113 /* Supporting Files */ = { 144 | isa = PBXGroup; 145 | children = ( 146 | E9EAA12319A43E7F002BD113 /* AllFontsTests-Info.plist */, 147 | E9EAA12419A43E7F002BD113 /* InfoPlist.strings */, 148 | ); 149 | name = "Supporting Files"; 150 | sourceTree = ""; 151 | }; 152 | /* End PBXGroup section */ 153 | 154 | /* Begin PBXNativeTarget section */ 155 | E9EAA0FE19A43E7F002BD113 /* AllFonts */ = { 156 | isa = PBXNativeTarget; 157 | buildConfigurationList = E9EAA12B19A43E7F002BD113 /* Build configuration list for PBXNativeTarget "AllFonts" */; 158 | buildPhases = ( 159 | E9EAA0FB19A43E7F002BD113 /* Sources */, 160 | E9EAA0FC19A43E7F002BD113 /* Frameworks */, 161 | E9EAA0FD19A43E7F002BD113 /* Resources */, 162 | ); 163 | buildRules = ( 164 | ); 165 | dependencies = ( 166 | ); 167 | name = AllFonts; 168 | productName = AllFonts; 169 | productReference = E9EAA0FF19A43E7F002BD113 /* AllFonts.app */; 170 | productType = "com.apple.product-type.application"; 171 | }; 172 | E9EAA11919A43E7F002BD113 /* AllFontsTests */ = { 173 | isa = PBXNativeTarget; 174 | buildConfigurationList = E9EAA12E19A43E7F002BD113 /* Build configuration list for PBXNativeTarget "AllFontsTests" */; 175 | buildPhases = ( 176 | E9EAA11619A43E7F002BD113 /* Sources */, 177 | E9EAA11719A43E7F002BD113 /* Frameworks */, 178 | E9EAA11819A43E7F002BD113 /* Resources */, 179 | ); 180 | buildRules = ( 181 | ); 182 | dependencies = ( 183 | E9EAA12019A43E7F002BD113 /* PBXTargetDependency */, 184 | ); 185 | name = AllFontsTests; 186 | productName = AllFontsTests; 187 | productReference = E9EAA11A19A43E7F002BD113 /* AllFontsTests.xctest */; 188 | productType = "com.apple.product-type.bundle.unit-test"; 189 | }; 190 | /* End PBXNativeTarget section */ 191 | 192 | /* Begin PBXProject section */ 193 | E9EAA0F719A43E7F002BD113 /* Project object */ = { 194 | isa = PBXProject; 195 | attributes = { 196 | LastUpgradeCheck = 0510; 197 | ORGANIZATIONNAME = caisenchuan; 198 | TargetAttributes = { 199 | E9EAA11919A43E7F002BD113 = { 200 | TestTargetID = E9EAA0FE19A43E7F002BD113; 201 | }; 202 | }; 203 | }; 204 | buildConfigurationList = E9EAA0FA19A43E7F002BD113 /* Build configuration list for PBXProject "AllFonts" */; 205 | compatibilityVersion = "Xcode 3.2"; 206 | developmentRegion = English; 207 | hasScannedForEncodings = 0; 208 | knownRegions = ( 209 | en, 210 | ); 211 | mainGroup = E9EAA0F619A43E7F002BD113; 212 | productRefGroup = E9EAA10019A43E7F002BD113 /* Products */; 213 | projectDirPath = ""; 214 | projectRoot = ""; 215 | targets = ( 216 | E9EAA0FE19A43E7F002BD113 /* AllFonts */, 217 | E9EAA11919A43E7F002BD113 /* AllFontsTests */, 218 | ); 219 | }; 220 | /* End PBXProject section */ 221 | 222 | /* Begin PBXResourcesBuildPhase section */ 223 | E9EAA0FD19A43E7F002BD113 /* Resources */ = { 224 | isa = PBXResourcesBuildPhase; 225 | buildActionMask = 2147483647; 226 | files = ( 227 | E9EAA10D19A43E7F002BD113 /* InfoPlist.strings in Resources */, 228 | E9EAA11519A43E7F002BD113 /* Images.xcassets in Resources */, 229 | ); 230 | runOnlyForDeploymentPostprocessing = 0; 231 | }; 232 | E9EAA11819A43E7F002BD113 /* Resources */ = { 233 | isa = PBXResourcesBuildPhase; 234 | buildActionMask = 2147483647; 235 | files = ( 236 | E9EAA12619A43E7F002BD113 /* InfoPlist.strings in Resources */, 237 | ); 238 | runOnlyForDeploymentPostprocessing = 0; 239 | }; 240 | /* End PBXResourcesBuildPhase section */ 241 | 242 | /* Begin PBXSourcesBuildPhase section */ 243 | E9EAA0FB19A43E7F002BD113 /* Sources */ = { 244 | isa = PBXSourcesBuildPhase; 245 | buildActionMask = 2147483647; 246 | files = ( 247 | E9EAA13319A43E95002BD113 /* MainVC.m in Sources */, 248 | E9EAA11319A43E7F002BD113 /* AppDelegate.m in Sources */, 249 | E9EAA10F19A43E7F002BD113 /* main.m in Sources */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | E9EAA11619A43E7F002BD113 /* Sources */ = { 254 | isa = PBXSourcesBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | E9EAA12819A43E7F002BD113 /* AllFontsTests.m in Sources */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXSourcesBuildPhase section */ 262 | 263 | /* Begin PBXTargetDependency section */ 264 | E9EAA12019A43E7F002BD113 /* PBXTargetDependency */ = { 265 | isa = PBXTargetDependency; 266 | target = E9EAA0FE19A43E7F002BD113 /* AllFonts */; 267 | targetProxy = E9EAA11F19A43E7F002BD113 /* PBXContainerItemProxy */; 268 | }; 269 | /* End PBXTargetDependency section */ 270 | 271 | /* Begin PBXVariantGroup section */ 272 | E9EAA10B19A43E7F002BD113 /* InfoPlist.strings */ = { 273 | isa = PBXVariantGroup; 274 | children = ( 275 | E9EAA10C19A43E7F002BD113 /* en */, 276 | ); 277 | name = InfoPlist.strings; 278 | sourceTree = ""; 279 | }; 280 | E9EAA12419A43E7F002BD113 /* InfoPlist.strings */ = { 281 | isa = PBXVariantGroup; 282 | children = ( 283 | E9EAA12519A43E7F002BD113 /* en */, 284 | ); 285 | name = InfoPlist.strings; 286 | sourceTree = ""; 287 | }; 288 | /* End PBXVariantGroup section */ 289 | 290 | /* Begin XCBuildConfiguration section */ 291 | E9EAA12919A43E7F002BD113 /* Debug */ = { 292 | isa = XCBuildConfiguration; 293 | buildSettings = { 294 | ALWAYS_SEARCH_USER_PATHS = NO; 295 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 296 | CLANG_CXX_LIBRARY = "libc++"; 297 | CLANG_ENABLE_MODULES = YES; 298 | CLANG_ENABLE_OBJC_ARC = YES; 299 | CLANG_WARN_BOOL_CONVERSION = YES; 300 | CLANG_WARN_CONSTANT_CONVERSION = YES; 301 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 302 | CLANG_WARN_EMPTY_BODY = YES; 303 | CLANG_WARN_ENUM_CONVERSION = YES; 304 | CLANG_WARN_INT_CONVERSION = YES; 305 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 306 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 307 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 308 | COPY_PHASE_STRIP = NO; 309 | GCC_C_LANGUAGE_STANDARD = gnu99; 310 | GCC_DYNAMIC_NO_PIC = NO; 311 | GCC_OPTIMIZATION_LEVEL = 0; 312 | GCC_PREPROCESSOR_DEFINITIONS = ( 313 | "DEBUG=1", 314 | "$(inherited)", 315 | ); 316 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 317 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 318 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 319 | GCC_WARN_UNDECLARED_SELECTOR = YES; 320 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 321 | GCC_WARN_UNUSED_FUNCTION = YES; 322 | GCC_WARN_UNUSED_VARIABLE = YES; 323 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 324 | ONLY_ACTIVE_ARCH = YES; 325 | SDKROOT = iphoneos; 326 | }; 327 | name = Debug; 328 | }; 329 | E9EAA12A19A43E7F002BD113 /* Release */ = { 330 | isa = XCBuildConfiguration; 331 | buildSettings = { 332 | ALWAYS_SEARCH_USER_PATHS = NO; 333 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 334 | CLANG_CXX_LIBRARY = "libc++"; 335 | CLANG_ENABLE_MODULES = YES; 336 | CLANG_ENABLE_OBJC_ARC = YES; 337 | CLANG_WARN_BOOL_CONVERSION = YES; 338 | CLANG_WARN_CONSTANT_CONVERSION = YES; 339 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 340 | CLANG_WARN_EMPTY_BODY = YES; 341 | CLANG_WARN_ENUM_CONVERSION = YES; 342 | CLANG_WARN_INT_CONVERSION = YES; 343 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 344 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 345 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 346 | COPY_PHASE_STRIP = YES; 347 | ENABLE_NS_ASSERTIONS = NO; 348 | GCC_C_LANGUAGE_STANDARD = gnu99; 349 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 350 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 351 | GCC_WARN_UNDECLARED_SELECTOR = YES; 352 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 353 | GCC_WARN_UNUSED_FUNCTION = YES; 354 | GCC_WARN_UNUSED_VARIABLE = YES; 355 | IPHONEOS_DEPLOYMENT_TARGET = 7.1; 356 | SDKROOT = iphoneos; 357 | VALIDATE_PRODUCT = YES; 358 | }; 359 | name = Release; 360 | }; 361 | E9EAA12C19A43E7F002BD113 /* Debug */ = { 362 | isa = XCBuildConfiguration; 363 | buildSettings = { 364 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 365 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 366 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 367 | GCC_PREFIX_HEADER = "AllFonts/AllFonts-Prefix.pch"; 368 | INFOPLIST_FILE = "AllFonts/AllFonts-Info.plist"; 369 | PRODUCT_NAME = "$(TARGET_NAME)"; 370 | WRAPPER_EXTENSION = app; 371 | }; 372 | name = Debug; 373 | }; 374 | E9EAA12D19A43E7F002BD113 /* Release */ = { 375 | isa = XCBuildConfiguration; 376 | buildSettings = { 377 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 378 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; 379 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 380 | GCC_PREFIX_HEADER = "AllFonts/AllFonts-Prefix.pch"; 381 | INFOPLIST_FILE = "AllFonts/AllFonts-Info.plist"; 382 | PRODUCT_NAME = "$(TARGET_NAME)"; 383 | WRAPPER_EXTENSION = app; 384 | }; 385 | name = Release; 386 | }; 387 | E9EAA12F19A43E7F002BD113 /* Debug */ = { 388 | isa = XCBuildConfiguration; 389 | buildSettings = { 390 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/AllFonts.app/AllFonts"; 391 | FRAMEWORK_SEARCH_PATHS = ( 392 | "$(SDKROOT)/Developer/Library/Frameworks", 393 | "$(inherited)", 394 | "$(DEVELOPER_FRAMEWORKS_DIR)", 395 | ); 396 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 397 | GCC_PREFIX_HEADER = "AllFonts/AllFonts-Prefix.pch"; 398 | GCC_PREPROCESSOR_DEFINITIONS = ( 399 | "DEBUG=1", 400 | "$(inherited)", 401 | ); 402 | INFOPLIST_FILE = "AllFontsTests/AllFontsTests-Info.plist"; 403 | PRODUCT_NAME = "$(TARGET_NAME)"; 404 | TEST_HOST = "$(BUNDLE_LOADER)"; 405 | WRAPPER_EXTENSION = xctest; 406 | }; 407 | name = Debug; 408 | }; 409 | E9EAA13019A43E7F002BD113 /* Release */ = { 410 | isa = XCBuildConfiguration; 411 | buildSettings = { 412 | BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/AllFonts.app/AllFonts"; 413 | FRAMEWORK_SEARCH_PATHS = ( 414 | "$(SDKROOT)/Developer/Library/Frameworks", 415 | "$(inherited)", 416 | "$(DEVELOPER_FRAMEWORKS_DIR)", 417 | ); 418 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 419 | GCC_PREFIX_HEADER = "AllFonts/AllFonts-Prefix.pch"; 420 | INFOPLIST_FILE = "AllFontsTests/AllFontsTests-Info.plist"; 421 | PRODUCT_NAME = "$(TARGET_NAME)"; 422 | TEST_HOST = "$(BUNDLE_LOADER)"; 423 | WRAPPER_EXTENSION = xctest; 424 | }; 425 | name = Release; 426 | }; 427 | /* End XCBuildConfiguration section */ 428 | 429 | /* Begin XCConfigurationList section */ 430 | E9EAA0FA19A43E7F002BD113 /* Build configuration list for PBXProject "AllFonts" */ = { 431 | isa = XCConfigurationList; 432 | buildConfigurations = ( 433 | E9EAA12919A43E7F002BD113 /* Debug */, 434 | E9EAA12A19A43E7F002BD113 /* Release */, 435 | ); 436 | defaultConfigurationIsVisible = 0; 437 | defaultConfigurationName = Release; 438 | }; 439 | E9EAA12B19A43E7F002BD113 /* Build configuration list for PBXNativeTarget "AllFonts" */ = { 440 | isa = XCConfigurationList; 441 | buildConfigurations = ( 442 | E9EAA12C19A43E7F002BD113 /* Debug */, 443 | E9EAA12D19A43E7F002BD113 /* Release */, 444 | ); 445 | defaultConfigurationIsVisible = 0; 446 | }; 447 | E9EAA12E19A43E7F002BD113 /* Build configuration list for PBXNativeTarget "AllFontsTests" */ = { 448 | isa = XCConfigurationList; 449 | buildConfigurations = ( 450 | E9EAA12F19A43E7F002BD113 /* Debug */, 451 | E9EAA13019A43E7F002BD113 /* Release */, 452 | ); 453 | defaultConfigurationIsVisible = 0; 454 | }; 455 | /* End XCConfigurationList section */ 456 | }; 457 | rootObject = E9EAA0F719A43E7F002BD113 /* Project object */; 458 | } 459 | -------------------------------------------------------------------------------- /AllFonts.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AllFonts.xcodeproj/project.xcworkspace/xcshareddata/AllFonts.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | C6A6BC9F-5999-40C4-B04D-DBCBD707FE8E 9 | IDESourceControlProjectName 10 | AllFonts 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 3F3B6540-9517-4D3C-B4F7-7BE6F94FEBB3 14 | https://github.com/alexcaisenchuan/AllFonts.git 15 | 16 | IDESourceControlProjectPath 17 | AllFonts.xcodeproj/project.xcworkspace 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 3F3B6540-9517-4D3C-B4F7-7BE6F94FEBB3 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/alexcaisenchuan/AllFonts.git 25 | IDESourceControlProjectVersion 26 | 110 27 | IDESourceControlProjectWCCIdentifier 28 | 3F3B6540-9517-4D3C-B4F7-7BE6F94FEBB3 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 3F3B6540-9517-4D3C-B4F7-7BE6F94FEBB3 36 | IDESourceControlWCCName 37 | AllFonts 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /AllFonts.xcodeproj/xcuserdata/caisenchuan.xcuserdatad/xcschemes/AllFonts.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /AllFonts.xcodeproj/xcuserdata/caisenchuan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | AllFonts.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | E9EAA0FE19A43E7F002BD113 16 | 17 | primary 18 | 19 | 20 | E9EAA11919A43E7F002BD113 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /AllFonts/AllFonts-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | com.alex.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /AllFonts/AllFonts-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_3_0 10 | #warning "This project uses features only available in iOS SDK 3.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | #import 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /AllFonts/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // AllFonts 4 | // 5 | // Created by caisenchuan on 14-8-20. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /AllFonts/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // ShowAllFonts 4 | // 5 | // Created by caisenchuan on 14-8-3. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | #import "MainVC.h" 11 | 12 | @implementation AppDelegate 13 | 14 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 15 | { 16 | self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 17 | 18 | self.window.backgroundColor = [UIColor whiteColor]; 19 | 20 | UIViewController *vc = [[MainVC alloc]initWithNibName:nil bundle:nil]; 21 | self.window.rootViewController = [[UINavigationController alloc]initWithRootViewController:vc]; 22 | 23 | [self.window makeKeyAndVisible]; 24 | 25 | return YES; 26 | } 27 | 28 | - (void)applicationWillResignActive:(UIApplication *)application 29 | { 30 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 31 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 32 | } 33 | 34 | - (void)applicationDidEnterBackground:(UIApplication *)application 35 | { 36 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 37 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 38 | } 39 | 40 | - (void)applicationWillEnterForeground:(UIApplication *)application 41 | { 42 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 43 | } 44 | 45 | - (void)applicationDidBecomeActive:(UIApplication *)application 46 | { 47 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 48 | } 49 | 50 | - (void)applicationWillTerminate:(UIApplication *)application 51 | { 52 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 53 | } 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /AllFonts/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /AllFonts/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /AllFonts/MainVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // MainVC.h 3 | // AllFonts 4 | // 5 | // Created by caisenchuan on 14-8-20. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MainVC : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /AllFonts/MainVC.m: -------------------------------------------------------------------------------- 1 | // 2 | // MainVC.m 3 | // ShowAllFonts 4 | // 5 | // Created by caisenchuan on 14-8-3. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import "MainVC.h" 10 | 11 | //屏幕属性 12 | #define SCREEN_HEIGHT ([[UIScreen mainScreen] bounds].size.height) 13 | #define SCREEN_WIDTH ([[UIScreen mainScreen] bounds].size.width) 14 | 15 | @interface MainVC () 16 | { 17 | UITableView *mTableView; 18 | 19 | NSArray *mFontFamilyNames; 20 | NSString *mShowText; 21 | } 22 | 23 | @end 24 | 25 | @implementation MainVC 26 | #pragma mark - System Functions 27 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 28 | { 29 | self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 30 | if (self) { 31 | // Custom initialization 32 | } 33 | return self; 34 | } 35 | 36 | - (void)viewDidLoad 37 | { 38 | [super viewDidLoad]; 39 | 40 | //Test 41 | [self showAllFonts]; 42 | 43 | //Nav 44 | self.title = @"All Fonts"; 45 | UIBarButtonItem *navButton = [[UIBarButtonItem alloc] 46 | initWithTitle:@"Edit Text" 47 | style:UIBarButtonItemStyleBordered 48 | target:self 49 | action:@selector(onRightNavButtonClick)]; 50 | self.navigationItem.rightBarButtonItem = navButton; 51 | 52 | //Datas 53 | mShowText = @"Hello World 中文样式"; 54 | NSArray *arrTemp = [UIFont familyNames]; 55 | mFontFamilyNames = [arrTemp sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2) { 56 | return [obj1 compare:obj2]; 57 | }]; 58 | 59 | //Views 60 | mTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT) style:UITableViewStyleGrouped]; 61 | mTableView.delegate = self; 62 | mTableView.dataSource = self; 63 | [self.view addSubview:mTableView]; 64 | } 65 | 66 | - (void)didReceiveMemoryWarning 67 | { 68 | [super didReceiveMemoryWarning]; 69 | // Dispose of any resources that can be recreated. 70 | } 71 | 72 | #pragma mark - UITableView Delegate 73 | -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 74 | { 75 | return mFontFamilyNames.count; 76 | } 77 | 78 | -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 79 | { 80 | NSArray *arr = [self fontNamesOfSection:section]; 81 | if (arr) { 82 | return arr.count; 83 | } else { 84 | return 0; 85 | } 86 | } 87 | 88 | -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 89 | { 90 | NSString *cellID = @"cellID"; 91 | 92 | UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID]; 93 | if (cell == nil) { 94 | cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID]; 95 | } 96 | 97 | NSString *fontName = [self fontNameOfIndexPath:indexPath]; 98 | if (mShowText == nil || mShowText.length == 0) { 99 | cell.textLabel.text = @"Hello World 中文样式"; 100 | } else { 101 | cell.textLabel.text = mShowText; 102 | } 103 | cell.textLabel.font = [UIFont fontWithName:fontName size:15]; 104 | 105 | cell.detailTextLabel.text = fontName; 106 | 107 | return cell; 108 | } 109 | 110 | -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 111 | { 112 | [tableView deselectRowAtIndexPath:indexPath animated:YES]; 113 | } 114 | 115 | -(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section 116 | { 117 | return [mFontFamilyNames objectAtIndex:section]; 118 | } 119 | 120 | -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 121 | { 122 | NSString *fontName = [mFontFamilyNames objectAtIndex:indexPath.section]; 123 | if (fontName && [fontName isEqualToString:@"Zapfino"]) { 124 | return 80; 125 | } else { 126 | return 50; 127 | } 128 | } 129 | 130 | #pragma mark - AlertView Delegate 131 | -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex 132 | { 133 | if (buttonIndex == 1) { 134 | mShowText = [alertView textFieldAtIndex:0].text; 135 | [mTableView reloadData]; 136 | } 137 | } 138 | 139 | #pragma mark - Our Functions 140 | -(NSArray *)fontNamesOfSection:(NSInteger)section 141 | { 142 | NSArray *ret; 143 | 144 | if (mFontFamilyNames && section < mFontFamilyNames.count) { 145 | NSString *familyName = [mFontFamilyNames objectAtIndex:section]; 146 | ret = [UIFont fontNamesForFamilyName:familyName]; 147 | } 148 | 149 | return ret; 150 | } 151 | 152 | -(NSString *)fontNameOfIndexPath:(NSIndexPath *)indexPath { 153 | NSArray *arr = [self fontNamesOfSection:indexPath.section]; 154 | if (arr && indexPath.row < arr.count) { 155 | return [arr objectAtIndex:indexPath.row]; 156 | } else { 157 | return nil; 158 | } 159 | } 160 | 161 | -(void)showAllFonts 162 | { 163 | NSArray *familyNames = [UIFont familyNames]; 164 | for(NSString *familyName in familyNames) { 165 | printf("Family: %s \n",[familyName UTF8String]); 166 | NSArray *fontNames = [UIFont fontNamesForFamilyName:familyName]; 167 | for(NSString *fontName in fontNames) { 168 | printf("\tFont: %s \n",[fontName UTF8String]); 169 | } 170 | } 171 | } 172 | 173 | -(void)onRightNavButtonClick 174 | { 175 | UIAlertView *dialog = [[UIAlertView alloc] 176 | initWithTitle:@"Please input text" 177 | message:nil 178 | delegate:self 179 | cancelButtonTitle:@"Cancel" 180 | otherButtonTitles:@"OK", nil]; 181 | dialog.alertViewStyle = UIAlertViewStylePlainTextInput; 182 | [dialog textFieldAtIndex:0].text = mShowText; 183 | [dialog show]; 184 | } 185 | 186 | @end 187 | -------------------------------------------------------------------------------- /AllFonts/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AllFonts/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AllFonts 4 | // 5 | // Created by caisenchuan on 14-8-20. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /AllFontsTests/AllFontsTests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.alex.${PRODUCT_NAME:rfc1034identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /AllFontsTests/AllFontsTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // AllFontsTests.m 3 | // AllFontsTests 4 | // 5 | // Created by caisenchuan on 14-8-20. 6 | // Copyright (c) 2014年 caisenchuan. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AllFontsTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation AllFontsTests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /AllFontsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AllFonts 2 | ======== 3 | 4 | A useful tools that show all fonts on your iPhone 5 | 6 | # ![Screenshot](https://raw.githubusercontent.com/alexcaisenchuan/AllFonts/master/screenshot.png) 7 | 8 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexcaisenchuan/AllFonts/6d92658d9a02560be12fff014eedf5a5ce7c83e9/screenshot.png --------------------------------------------------------------------------------