作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在应用程序打开时运行 UIActivityIndicator。我怎样才能做到这一点?我的代码就是我在那里分享的方式。我希望此代码在 Launchscreen 打开时起作用。
@objc func buttonTapped(_ sender: UIButton) {
let size = CGSize(width: 30, height: 30)
let selectedIndicatorIndex = sender.tag
let indicatorType = presentingIndicatorTypes[selectedIndicatorIndex]
startAnimating(size, message: "Loading...", type: indicatorType, fadeInAnimation: nil)
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 1.5) {
NVActivityIndicatorPresenter.sharedInstance.setMessage("Authenticating...")
}
DispatchQueue.main.asyncAfter(deadline: DispatchTime.now() + 3) {
self.stopAnimating(nil)
}
}
for (index, indicatorType) in presentingIndicatorTypes.enumerated() {
let x = 150
let y = 250
let frame = CGRect(x: x, y: y, width: 100, height: 100)
let activityIndicatorView = NVActivityIndicatorView(frame: frame,
type: .orbit)
let animationTypeLabel = UILabel(frame: frame)
activityIndicatorView.padding = 20
if indicatorType == NVActivityIndicatorType.orbit {
activityIndicatorView.padding = 0
}
self.view.addSubview(activityIndicatorView)
self.view.addSubview(animationTypeLabel)
activityIndicatorView.startAnimating()
let button: UIButton = UIButton(frame: frame)
button.tag = index
#if swift(>=4.2)
button.addTarget(self,
action: #selector(buttonTapped(_:)),
for: .touchUpInside)
#else
button.addTarget(self,
action: #selector(buttonTapped(_:)),
for: UIControlEvents.touchUpInside)
#endif
self.view.addSubview(button)
}
最佳答案
您想要实现的是在启动屏幕期间显示UIActivityIndicator
,遗憾的是不可能。如果您想在启动屏幕上执行任何动画,请使用您的第一个 View Controller 作为启动屏幕,并在启动屏幕上的动画结束时重定向到主屏幕。
didFinishLaunchingWithOptions
方法调用附言仅仅为了向用户展示一些很棒的动画/加载屏幕而延迟应用程序启动并不是一个好主意。对于第一次使用应用程序的用户来说,这可能看起来很酷,但是随着应用程序的广泛使用,用户可能会在每次启动应用程序时等待几秒钟而感到沮丧。
<小时/>祝你好运:)关于ios - UIActivityIndicator 添加 AppDelegate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55772242/
我是一名优秀的程序员,十分优秀!