-1

我在我的 UIButtons 中加入了发光效果(代码取自https://github.com/bc-oscar/Glowing-UIButton)。代码在一个单独的 swift 文件中,按钮在视图控制器中定义为“GlowingButton”类型,并在身份检查器中更改为从这个自定义类派生。应用程序第一次运行时效果有效,但退出后返回时停止?

import UIKit 

class GlowingButton: UIButton {

/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
override func drawRect(rect: CGRect) {
    // Drawing code
}
*/

// Creates a glow effect in the button by setting its layer shadow properties
func startGlowWithCGColor (growColor:CGColor) {
    self.layer.shadowColor = growColor
    self.layer.shadowRadius = 10.0
    self.layer.shadowOpacity = 1.0
    self.layer.shadowOffset = CGSizeZero
    self.layer.masksToBounds = false

    // Autoreverse, Repeat and allow user interaction.
    UIView.animateWithDuration(1.0, delay: 0, options: [UIViewAnimationOptions.Autoreverse,                                                         UIViewAnimationOptions.CurveEaseInOut, UIViewAnimationOptions.Repeat, UIViewAnimationOptions.AllowUserInteraction],
        animations: { () -> Void in
            // Make it a 15% bigger
            self.transform = CGAffineTransformMakeScale(1.15, 1.15)
        }) { (Bool) -> Void in
            // Return to original size
            self.layer.shadowRadius = 0.0
            self.transform = CGAffineTransformMakeScale(1.0, 1.0)
    }
}

// Removes the animation
func stopGlow () {
    self.layer.shadowRadius = 0.0
    self.transform = CGAffineTransformMakeScale(1.0, 1.0)
    self.layer.removeAllAnimations()
    self.layer.masksToBounds = true
}

}

4

2 回答 2

0

那是因为您正在调用startGlowWithCGColor您的viewDidLoad,请尝试将其放入viewDidAppear

https://github.com/bc-oscar/Glowing-UIButton/blob/master/SampleApp/Sample%20App/ViewController.swift#L24

于 2015-12-15T00:48:12.287 回答
0

我不完全明白是什么原因造成的,但似乎退出应用程序会使功能卡在self.transform = CGAffineTransformMakeScale(1.0, 1.0). 递归调用函数 withself.startGlowWithCGColor(growColor)重新启动效果。

于 2016-01-02T13:19:16.260 回答