在swift中自动更改背景图像

时间:2014-11-12 08:05:50

标签: ios image swift background

如何使用计时器自动更改背景图像,即5秒后一个背景图像转换为另一个背景图像?你是如何在Swift中做到的?

1 个答案:

答案 0 :(得分:4)

 NSTimer(timeInterval: 0.5, target: self, selector: "ChangeImage", userInfo: nil, repeats: true)

并在Action中更改图像

 func ChangeImage()
{
    NSLog("asdasd");
    imgView.image = UIImage(named: "img.png");
}