ios – 在swift中删除动画

我有一个文本字段,用户应该输入信息.以及将用户指向文本字段的标签(如提示).

我想在用户按下文本字段输入数据后停止动画并删除提示标签.

文本标签上有重复的动画.创建者:

override func viewDidLoad() {
    super.viewDidLoad()

    textInput.addTarget(self,action: #selector(CalculatorViewController.removeAnimation(_:)),forControlEvents: UIControlEvents.TouchDown)

     self.hintLabel.alpha = 0.0

    UIView.animateWithDuration(1.5,delay: 0,options: .Repeat,animations: ({
        self.hintLabel.alpha = 1.0
    }),completion: nil           
    )

之后我创建了一个删除注释的函数

func removeAnimation(textField: UITextField) {
    view.layer.removeAllAnimations()
    self.view.layer.removeAllAnimations()
    print("is it working?!")
}

应根据文件工作.

即使我看到打印在控制台中的字符串,我的标签仍然闪烁.我想问题是动画重复,但不知道如何解决这个问题.

解决方法

//Just remove the animation from the label. It will Work

 func remove()

{
    self.hintLabel.layer.removeAllAnimations()
    self.view.layer.removeAllAnimations()
    self.view.layoutIfNeeded()

}

更新:

如果你想要核,你也可以这样做:

func nukeAllAnimations() {
    self.view.subviews.forEach({$0.layer.removeAllAnimations()})
    self.view.layer.removeAllAnimations()
    self.view.layoutIfNeeded()
}

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...