在 Xcode 中将图像加载到 UIWebView

发布于 2024-11-08 18:33:28 字数 136 浏览 0 评论 0原文

我正在尝试制作 1 个页面视图来从某个链接加载图像,我已经设法做到了这一点,但图片不适合所有视图,我计划它覆盖整个视图,但它只是覆盖了大约 80%,这意味着它仍然漂浮在左侧。我是否需要定义任何代码或属性来使页面拉伸以适合整个视图?

提前致谢。

I'm trying to make 1 page view to load and image from certain link, I've manage to do that, but the picture didn't fit all the view, I'm planning it to cover the whole view, but it only cover around 80% of it, which mean it still floating in the left side. Is there any code or attribute I need to define to make the page being stretch to fit the whole view?

Thanx in advance.

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

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

发布评论

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

评论(2

如歌彻婉言 2024-11-15 18:33:28

我认为正确的方法是向您的图像添加一些 css 样式(如果您可以操作 html),以便您可以控制其大小和位置...

编辑:如果您将 UIWebView 设置为直接加载图像,你可以尝试(我不知道你是否可以接受)将图像包装在这样的HTML片段中:

<html><head>...</head><body><img src=YOU_URL_HERE /><body></html>

这样你就可以通过CSS控制它的大小和位置......

i think the right approach to this would be adding some css-style to your image (if you can manipulate your html) so that you can control its size and placement...

EDIT: if you set your UIWebView to directly load an image, you could try (I don't know if it is acceptable for you) to wrap the image in a HTML snippet like this:

<html><head>...</head><body><img src=YOU_URL_HERE /><body></html>

so that you can control its size and position through CSS...

↘紸啶 2024-11-15 18:33:28

您可以为您的网站设置自定义元视口

iPhone 视口尺寸
视口
是确定的矩形面积
内容的布局方式以及文本的位置
包裹在网页上。在桌面上,
视口由大小决定
窗户的。用户调整大小
通过调整窗口大小和视口
滚动查看网页的更多内容。
iPhone 上的 Safari 没有 Windows
— 没有滚动条或调整大小
旋钮。因此,“窗口”是一个
由iPhone决定的固定尺寸
屏幕尺寸。用户平移以查看更多
网页的大小,也可以放大
使用双击或捏合来退出
手势。为了让这个功能在 iPhone 上运行,
视口有比例和宽度
财产。当 Safari 第一次加载
网页,它将初始比例设置为
完全适应网页的宽度
在 iPhone 屏幕上。 [...]

You could set a custom meta viewport for your site.

iPhone viewport dimensions
The viewport
is the rectangle area that determines
how content is laid out and where text
wraps on a webpage. On the desktop,
the viewport is determined by the size
of the window. The user resizes the
viewport by resizing the window and
scrolls to see more of the webpage.
Safari on iPhone doesn't have windows
— there are no scroll bars or resize
knobs. Therefore, the "window" is a
fixed size determined by the iPhone
screen size. The user pans to see more
of the webpage, and can also zoom in
and out using double tap or the pinch
gesture. To make this work on iPhone,
the viewport has a scale and width
property. When Safari first loads a
webpage, it sets the initial scale to
fit the webpage completely width-wise
on the iPhone screen. [...]

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