图像与同一视图中的文本
如何将图像和文本放在同一视图上?我想要像插入文本视图中的图像之类的东西...... 以及如何更改文本的字体。我的意思是,同一文本中有两种字体。 谢谢你!
How can I put together on the same view, an image and text? I want something like the image inserted in the text view...
And how can I change the text's font. I mean, two kinds of fonts in the same text.
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只要您不需要可编辑的文本视图,最简单的途径就是使用 UIWebView 进行任何类型的高级文本布局,并将您的内容制作为 HTML 文档。
As long as you don't need an editable text view, the simplest route is to use a UIWebView for any kind of advanced text layout, and make your content as an HTML document.
三种方法,
一,如果您不打算重用视图,
二,如果您打算重用该视图,
3,如果您可以使用图形基元,
Three approaches,
One, if you are not planning to reuse the view,
two, if you are planning to reuse the view,
three, if you are okay with working with graphics primitives,