我有一个UITableViewCell,它包含一个UIView,当调用TableViewCell的awakeFromNib()时,它会被动画化。 动画适用于TableViewController出现时调用的单元格,但滚动时生成的单元格根本不移动。 我怎么解决这个问题? I added an example on Github to demonstrate the issue.
TableViewController
import UIKit
class ViewController: UITableViewController {
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 20
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableView.dequeueReusableCellWithIdentifier("cell") as! TableViewCell
return cell
}
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
TableViewCell
import UIKit
class TableViewCell: UITableViewCell {
@IBOutlet weak var animatorCell: UIView!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
UIView.animateWithDuration(0.3, delay: 0.0, options: [.CurveEaseInOut, .Repeat, .Autoreverse], animations: { () -> Void in
self.animatorCell.transform = CGAffineTransformMakeTranslation(0, 10)
}, completion: nil)
}
}
答案 0 :(得分:1)
我不确定,但由于您使用dequeueReusableCell
,我猜awakeFromNib
未被调用。使用awakeFromNib
初始化第一个单元格,但下一个单元格将是相同的单元格,重新使用,因此不会使用awakeFromNib
初始化它们。如果我错了,并为下一个单元格调用了awakeFromNib
,那么我猜你的动画在进入屏幕之前已经完成。
无论哪种方式,您都可以尝试在tableView中使用类似tableView(_:willDisplayCell:forRowAtIndexPath:)
(here)的内容,并从那里调用单元格上的动画方法。