Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 UIProgressView,但我希望背景是图像,以使事情看起来更漂亮。我不知道如何把一个放在另一个上面。背景图像包含 UIProgressView 很重要。
任何帮助表示赞赏。
UIImageView您可以简单地为您的背景图像创建一个,然后添加一个UIProgressView作为子视图。
UIImageView
UIProgressView
您可以在 Interface Builder 或代码中执行此操作,例如[myBackgroundImageView addSubView:myProgressView];
[myBackgroundImageView addSubView:myProgressView];
显然,您需要为两者设置正确的框架,以确保它们处于正确的位置。
查看Apple 参考中的 addSubview :。