如何在 UIViewController 中全屏使用 UIImageView?
我正在开发一个软件,在其中我正在制作一个新文件,它是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将 imageview 属性设置为 scalltoFit
也许它可以帮助你
you should set imageview property as scalltoFit
May be it can help you