在 UIImageView 中的 3 张图片之间切换
嘿,我想知道如何让用户能够更改应用程序的背景?我有 3 个图像供用户选择。我在很多应用程序中都看到过它。我该怎么做?如果可以请提供一些代码! :)
先感谢您!
Hey, I was wondering how I could make the user being able to change the background of the app? I have 3 Images that the user will be able to choose from. I've seen it in many apps. How would I do this? If possible please provide some code! :)
Thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很容易。您所需要做的就是将视图的背景属性设置为图像。其实现方式如下:
现在,当用户选择不同的图像时,只需每次使用不同的图像重复上述代码即可。
It's quite easy. All you need is to set the background property of your view to an image. Here's how it's done:
Now, when the user selects a different image, simply repeat the above code with a different image each time.
问题应该更清楚。
您可以使用以下方法更改 UIView 或父 UIWindow 的背景,
或使用 UIImageView,
The question should be more clear.
You can change the background of the UIView or parent UIWindow by using,
or Use the UIImageView,