问题描述
cloud beta resource-manager org-policies delete iam.allowedPolicyMemberDomains --organization [YOUR_ORG_ID]
我正在从下面的checkwinner函数中调用此五彩纸屑功能,五彩纸屑应在适当的时候掉落,而在屏幕上注册了水龙头时则停止掉落
func confettiStart() {
confettiView.frame = self.view.bounds
self.view.addSubview(confettiView)
confettiView.startAnimating()
print("TEST")
let tapGesture = UITapGestureRecognizer(target: self,action: #selector(handleTap))
view.addGestureRecognizer(tapGesture)
view.isUserInteractionEnabled = true
}
@objc func handleTap() {
confettiView.stopAnimating()
confettiView.removeFromSuperview()
let tapGesture = UITapGestureRecognizer(target: self,action: #selector(handleTap))
tapGesture.cancelstouchesInView = true
winMusic?.stop()
}
但是,当我稍后尝试再次调用此checkwinner函数时,五彩纸屑不起作用。它似乎只在一次运行中起作用,而在以后的第二次运行中却不起作用。有人可以解释原因并提供解决方案吗?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)