如何创建像报纸一样包含图像和文本的视图?
我想创建一个包含图像和文本的视图,就像报纸一样。
例如,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
那么你可以有 3 个选项:
Well you can 3 options:
这几乎肯定是在 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.
您可以通过设置 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.