class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
var imgListArray :NSMutableArray = []
for countValue in 1...2 {
imgListArray.addObject(UIImage(named: "egg\(countValue).png")!)
}
/* this part is my problem.
self.imageView.animationImages = imgListArray
self.imageView.animationDuration = 1.0
self.imageView.startAnimating()
*/
}
我正在寻找有关我的快速代码的一些帮助。
我要做的是来回显示两张图片。
以上部分继续说“viewcontroller没有成员
命名为imageView“