如何在 UIViewController 中全屏使用 UIImageView?

发布于 2024-10-17 01:52:58 字数 393 浏览 4 评论 0原文

我正在开发一个软件,在其中我正在制作一个新文件,它是 UIViewController 的子类,当我使用 UIImageView 时,其中几乎没有剩余边框,我应该做什么,以便我的图像应该覆盖它周围的所有区域,

我在 ViewDidLoad 中的 UIImageView 编码

UIImageView* view = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"frontnew.png"]];
view.frame = CGRectMake(0, 0, 320, 415);
[self.view addSubview:view];

现在应该做什么??? 如果我增加高度和宽度,那么它会从两侧增加,而不是全部???

I am developing a software and in it I am making a new file, which is subclass of UIViewController, when I do use UIImageView, then there is little border remaining in it, what should I do so that my image should cover all area around it,

my coding of UIImageView in ViewDidLoad is

UIImageView* view = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"frontnew.png"]];
view.frame = CGRectMake(0, 0, 320, 415);
[self.view addSubview:view];

now what should I do ????
If I increase height and width then it will increase from two sides, not all ???

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

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

发布评论

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

评论(1

陌伤浅笑 2024-10-24 01:52:58

您应该将 imageview 属性设置为 scalltoFit
也许它可以帮助你

you should set imageview property as scalltoFit
May be it can help you

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