带有文本和图像的可编辑 UITextView?
我的项目要求之一是保存用户键入的数据。这是文本+图像(他们可以附加相册中的图像/视频)。
用户应该能够就地编辑文本(类似于 ios mail.app),可以在文本和代表之间插入图像以录制图像以提供特定于图像的选项。
我发现很少有使用 coretext 布局图像和文本的示例,但我发现的 coretext 示例都不可编辑。
我应该使用什么样的控制? mail.apps 和笔记应用程序如何实现这一目标?
One of my project requirement is to save data keyed in by the user. Which is text + image (they can attach image/video from photo album).
User should be able to edit the text in place (similar to ios mail.app), images can be inserted between texts and a delegate for taping image to provide image specific options.
I found few example to layout images and text with coretext but none of the coretext example I found are editable.
What kind of control should I use? How mail.apps and note taking app achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iOS5 中,WebKit 实现现在支持
contentEditable
和designMode
。然后,您可以内联编辑 HTML 文本,甚至嵌入图像。With iOS5, the WebKit implementation now supports
contentEditable
anddesignMode
. You can then edit HTML text inline and even embed images.