gpt4 book ai didi

ios - swift : How can I resize the View Background Image?

转载 作者:行者123 更新时间:2023-11-28 06:41:32 25 4
gpt4 key购买 nike

我正在我的 View 中添加背景图像。但是当我尝试调整图像大小时,没有任何反应。我知道图像太大,但我可以使用代码进行缩放纵横比填充。

    self.view.backgroundColor = UIColor(patternImage: UIImage(named: "matchfield.jpg")!)
self.view.contentMode = .ScaleAspectFill

此代码和平不起作用。我该如何调整大小?

更新

我在这个链接中找到了解决方案:UIView background image resize

问题已关闭。使用背景图片是非常敏感的情况,我不建议这样做。感谢您的回答。

最佳答案

使用以下代码调整大小...

var image : UIImageView
image = UIImageView(frame:CGRectMake(0, 0, 200, 150))
image.autoresizingMask = UIViewAutoresizing.FlexibleBottomMargin | UIViewAutoresizing.FlexibleHeight | UIViewAutoresizing.FlexibleRightMargin | UIViewAutoresizing.FlexibleLeftMargin | UIViewAutoresizing.FlexibleTopMargin | UIViewAutoresizing.FlexibleWidth
image.contentMode = UIViewContentMode.ScaleAspectFit

关于ios - swift : How can I resize the View Background Image?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37883045/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com