cocoa-touch 中的简单富文本视图

发布于 2024-12-10 23:02:51 字数 413 浏览 0 评论 0 原文

我正在开发一个 iOS 应用程序,我需要在其中实现具有以下要求的基本文本视图:

  • 富文本
    • 字体强调(粗体、斜体)。
    • 用于类似超链接的操作的内嵌图像。
  • 滚动
    • 获取和设置滚动偏移(用于记住上一个滚动位置)。
  • 文本选择
    • 获取选定的文本字符范围。
    • 如果需要,选择文本时滚动视图。

我相信我可以使用 UIWebView 来实现这一点,但问题是它提供的控制非常少,而且速度有点慢,并且在加载时显示空白屏幕。我想知道这是否可以通过核心文本来实现,但关于文本选择我不确定。我希望尽可能实现 iOS 原生行为。

我需要的与 Instapaper 的文本视图非常相似。

I'm working on an iOS app in which I need to implement a basic text view with these requirements:

  • Rich text
    • Font emphasis (bold, italics).
    • Inline images for hyperlink-like actions.
  • Scrolling
    • Getting and setting the scroll offset (for remembering the previous scroll position).
  • Text selection
    • Getting the selected text character range.
    • Scrolling the view when selecting text, if needed.

I believe I could achieve this with UIWebView but the problem with this is that it provides very little control and is somewhat slow and shows a blank screen while loading. I was wondering if this could be achieved with Core Text but regarding the text selection I'm not sure. I'm hoping to achieve as iOS-native behaviour as possible.

What I'd need is pretty much like Instapaper's text view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

π浅易 2024-12-17 23:02:51

OmniGroup 通过创建一个类似于 UITextView 的文本编辑器来完成类似的事情,它使用 Core Text 绘制文本,但也具有 UITextView 的所有编辑功能以及富文本功能来自核心文本。

您可以在此处找到它。

OmniGroup have done something like this by creating a text editor much like UITextView which draws the text using Core Text but also has all the editing features of UITextView as well as Rich text features from Core Text.

You can find it here.

夜雨飘雪 2024-12-17 23:02:51

StackOverflow 中有一些关于此问题的答案,例如: 核心文本教程

然而,这是我读过的最好的教程关于 iOS 中的核心文本未在我找到的任何答案中列出: 如何创建带有核心文本的简单杂志应用

请注意,CoreText 仅适用于 iOS 3.2 或更高版本。

There are some answers about this in StackOverflow, for example: Core text tutorial

However the best tutorial I ever read about Core Text in iOS is not listed in any answer I've found: How to create a simple magazine app with core text

Please notice that CoreText is only available for iOS 3.2 or superior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文