需要一些关于 CoreText 和 sqlite 的建议
我正在创建一个圣经应用程序。 圣经数据是用sqlite制作的。 我希望我的圣经应用程序看起来像真正的书。 所以,我打算使用 CoreText 而不是 UIWebView。
我有一些问题。
1)我的方式(使用CoreText)是看起来像真实的最好方式吗?你的想法又如何呢?
2)如何从sqlite中获取使用CoreText的数据?什么格式? xml 文件?? 圣经数据库文件的大小并不小。 我不知道。 ......
3) 圣经软件应具有[搜索功能]和[书签功能]。 这些功能可以从CoreText中实现吗?
我找不到关于此问题的示例代码和文章(-How to use CoreText using sqlite)。
我需要你的建议。请添加您的评论。谢谢!
I'm creating a Bible App.
The Bible data was made by sqlite.
I want my Bible App to look like Real Book.
So, I intend using CoreText instead of UIWebView.
I have some questions.
1) Is my way(using CoreText) the best way to look like Real? How about your thought?
2) How make data for using CoreText from sqlite? What format? xml file??
Bible DB file size isn't small.
I have no idea. ......
3) Bible App should have [Search feature] and [Book mark feature].
Can these feature be realized from CoreText?
I can't find sample codes and articles about this issue(-How to use CoreText using sqlite).
I need your advice. Please add your comments. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在这里似乎有一些误解。
首先,核心文本。它是用于渲染文本的 C 函数集。它不会帮助您搜索或添加书签。
另外,您的 SQLite DB 已经有自己的“格式”。您可以从 SQLite DB 查询字符串,然后将其呈现到视图(可能使用 CoreText)。
所以SQLite是一个存储和查询信息的工具。 CoreText是一个显示字符串的工具。您不会找到同时涵盖两者的教程或任何内容,因为它们涉及完全不同的问题。
您需要首先了解基础知识。所以我建议你做这些事情:
UILabel
)呈现文本。You seem to have a few misconceptions here.
First, CoreText. It is a set of C functions for rendering text. It does not aid you in searching or bookmarking.
Also, your SQLite DB already has its own "format". You would query strings from your SQLite DB and then render it to a view, maybe with CoreText.
So SQLite is a tool to store and query information. CoreText is a tool to display strings. You will not find a tutorial or anything covering both at once as they are about totally distinct problems.
You need to learn about the basics first. So I suggest you do these things:
UILabel
.