gpt4 book ai didi

ios - 如何圆我的事件指示器背景的角落

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:35 24 4
gpt4 key购买 nike

我是编码的新手。话虽如此,我已经想出了如何在我的白色事件指示器微调器后面放置一个灰色背景。现在我想让背景的角变圆。我搜索了又搜索,但没有成功。

这是我用来显示事件指示器和背景的代码。如果您需要更多信息来提供帮助,请直接询问。我什至不知道怎么问这个问题。我是个菜鸟。

activityIndicator = UIActivityIndicatorView(frame: CGRectMake(0, 0, 80, 80))

activityIndicator.center = self.view.center

activityIndicator.backgroundColor = (UIColor (white: 0.3, alpha: 0.8)) //create a background behind the spinner

activityIndicator.hidesWhenStopped = true

activityIndicator.activityIndicatorViewStyle = UIActivityIndicatorViewStyle.WhiteLarge

view.addSubview(activityIndicator)

activityIndicator.startAnimating()

UIApplication.sharedApplication().beginIgnoringInteractionEvents()

最佳答案

欢迎来到 Stack Overflow!

在回答您的问题时:您应该将 CALayer 属性 cornerRadius 设置为正的非零值。例如:

activityIndicator.layer.cornerRadius = 10

结果:

enter image description here

此外,由于您是编程新手,我建议您查看 Apple 的 The Swift Programming Language,它是免费的,可以带您了解整个 Swift 语言。这是链接:https://itunes.apple.com/gb/book/swift-programming-language/id881256329?mt=11 (它也可以作为 Web 版本使用)

关于ios - 如何圆我的事件指示器背景的角落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29503190/

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