iOS 4.2 上有哪些字体可用?
我正在寻找 iOS 4.2 上可用字体的官方列表,因为 Apple 在 4.2 更新中包含了更多字体。
不幸的是,我似乎在主要文档中找不到任何内容,在苹果的开发者网站上也找不到任何内容;但我依稀记得在某处看到过一个“官方”,即Apple制作的iOS上所有可用字体的列表。
如果有人能给我指出一份文档,那就太好了。 :)
提前致谢!
更新:
在App Store上找到了一个名为“Fonts”的应用程序(免费)。它只是显示设备上的所有字体。
I'm looking for an official list of available Fonts on iOS 4.2 since Apple included more fonts with the 4.2 update.
Unfortunately, I can't seem to find anything in the main documentation, nor on Apple's developer site; but I faintly remember that somewhere I saw an "official", that is, a list made by Apple of all fonts available on iOS.
If someone could point me to a piece of documentation, that would be nice. :)
Thanks in advance!
Update:
Found an app called "Fonts" on the App Store (free). It simply displays all fonts on the device.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此方法检查设备(iPhone 或 iPad)的可用字体
将其复制/粘贴到类上并使用 [self getAllFonts];
该列表应该显示在您的日志上
编辑:如果您想看看它是什么样子,我们使用表视图如何
第1步:将其添加到您的标题
第2步:在您的界面文件(.m)上,在viewDidLoad上填充您的数组。
STEP3:最后,将其添加到您的 cellForRowAtIndexPath 方法中
PS:确保您已连接委托和数据源。故事板(或 xib)上的 tableView Cell 属性应该是“Cell”,并确保:
有关表视图的更多信息,请检查苹果文档 此处
或查看 appCoda 的表格视图教程 此处
You can check the available font for your device (iPhone or iPad) using this method
Copy/paste this on a class and use [self getAllFonts];
The list should be displayed on your logs
EDIT: If you wanted to see what it looks like, how about we use a table view
STEP1: Add this to your header
STEP2: On your interface file (.m), populate your array on viewDidLoad.
STEP3: Finally, add this to you cellForRowAtIndexPath method
PS: Make sure you got the delegate and datasource connected. Your tableView Cell property on your storyboard (or xib) should be "Cell", And make sure that:
For more info on table views, check the apple documentation here
or see appCoda's Table View tutorial here