我正在尝试一个简单的动画来选择/取消选择 UITableViewCell ,如下所示:
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[UIView animateWithDuration: 0.5 delay:0 options:UIViewAnimationOptionCurveEaseOut animations:^{
tabConstraint.constant = selected ? 40 : 20;
} completion:nil];
}
动画块内的代码将被调用,但它不是动画。一切正常,但根本没有任何动画。我怎样才能使单元格选择动画?