图像与同一视图中的文本

发布于 2024-10-21 14:15:45 字数 83 浏览 1 评论 0原文

如何将图像和文本放在同一视图上?我想要像插入文本视图中的图像之类的东西...... 以及如何更改文本的字体。我的意思是,同一文本中有两种字体。 谢谢你!

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 技术交流群。

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

发布评论

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

评论(2

再可℃爱ぅ一点好了 2024-10-28 14:15:45

只要您不需要可编辑的文本视图,最简单的途径就是使用 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.

人生戏 2024-10-28 14:15:45

三种方法,

一,如果您不打算重用视图,

  1. 创建一个视图作为 v1
  2. 添加图像视图作为v1的子视图
  3. 添加字体为1的标签作为v1的子视图
  4. 添加字体2的标签作为v1的子视图

二,如果您打算重用该视图,

  1. 将 uiview 子类化为新类
  2. 在新类的 initWithFrame 方法中添加图像视图:
    子视图
  3. 添加字体为 1 的标签子视图
  4. 添加字体为 2 的标签子视图

3,如果您可以使用图形基元,

  1. 将 uiview 子类化为新类
  2. 重写类中的drawRect方法并绘制图像,然后
    文本。

Three approaches,

One, if you are not planning to reuse the view,

  1. Create a view as v1
  2. add the image view as the subview of v1
  3. add the label with font 1 as the subview of v1
  4. add the label with font 2 as the subview of v1

two, if you are planning to reuse the view,

  1. subclass uiview as a new class
  2. in the initWithFrame method of the new class add the image view as
    subview
  3. add the label with font 1 subview
  4. add the label with font 2 subview

three, if you are okay with working with graphics primitives,

  1. subclass uiview as a new class
  2. override the drawRect method in the class and paint out the image, and the
    text.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文