如何创建像报纸一样包含图像和文本的视图?

发布于 2024-12-11 16:20:07 字数 92 浏览 0 评论 0原文

我想创建一个包含图像和文本的视图,就像报纸一样。

例如,320 像素宽度的图像为 200 x 100。图像位于视图的左侧,右侧和底部的剩余空间将包含文本。

I want to create a view which contains image and text, like a newspaper has.

For example, in 320 pixel width, a 200 x 100 image. The image is on the left side of the view, and the remaining space on the right side and bottom will contain text.

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

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

发布评论

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

评论(3

百善笑为先 2024-12-18 16:20:07

那么你可以有 3 个选项:

  1. 使用 UIIImageViews 和 UITextView 创建布局
  2. 使用 HTML 和 UIWebView
  3. NSAttributedString 并使用 CoreText 将其绘制在视图上

Well you can 3 options:

  1. Create a layout with UIIImageViews and UITextView
  2. Use HTML and UIWebView
  3. NSAttributedString and draw it on a view with CoreText
如何视而不见 2024-12-18 16:20:07

这几乎肯定是在 UIWebView 中布局的,图像上的样式设置为“float: left”,边距设置使文本远离其边缘,但让它围绕它。

这里有一个关于它的小教程: http://www.tizag.com/cssT/float.php< /a>

请注意,这是关于提供 UIWebView 的 HTML 和 CSS 内容,而不是任何 iOS 风格的内容。

That's almost certainly laid out in an UIWebView, with the styling on the image set to "float: left" with margin settings that hold the text off from the edge of it but let it wrap around it.

Here's a little tutorial about it: http://www.tizag.com/cssT/float.php

Note that this is about the HTML and CSS content to feed the UIWebView, not anything iOS-ish.

少钕鈤記 2024-12-18 16:20:07

您可以通过设置 UIImageView 和 UITextView 的框架来按照您想要的方式排列它们。然后将图像分配给 imageView,将文本分配给 textView。

You arrange UIImageViews and UITextViews in the way you want them by setting their frames. Then assign images to the imageViews and text to the textViews.

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